pstream is dead; long live pstream taciturnaxolotl.github.io/pstream-ng/
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Revert "Merge pull request #71 from afyef/feat/skip-source-button"

This reverts commit d1356405d2754a926978b53d78e77c8103e55ce5, reversing
changes made to 85421a881d932c8121d3c1938665d241a43cf445.

Pas e49eb634 bf359916

-20
-1
.gitignore
··· 28 28 29 29 # config 30 30 .env 31 - local-libs/
-19
vite.config.mts
··· 25 25 const env = loadEnv(mode, process.cwd()); 26 26 return { 27 27 base: env.VITE_BASE_URL || "/", 28 - assetsInclude: ['**/*.wasm'], 29 - server: { 30 - fs: { 31 - allow: [ 32 - // Default: allow serving files from project root 33 - path.resolve(__dirname), 34 - // Allow serving from the linked providers directory 35 - path.resolve(__dirname, '../providers/@p-stream/providers'), 36 - ], 37 - }, 38 - }, 39 28 plugins: [ 40 29 million.vite({ auto: true, mute: true }), 41 30 handlebars({ ··· 134 123 135 124 build: { 136 125 sourcemap: mode !== "production", 137 - assetsInlineLimit: (filePath: string) => { 138 - // Never inline WASM files 139 - if (filePath.endsWith('.wasm')) { 140 - return false; 141 - } 142 - // Use default 4KB limit for other assets 143 - return undefined; 144 - }, 145 126 rollupOptions: { 146 127 output: { 147 128 manualChunks(id: string) {