The recipes.blue monorepo recipes.blue
recipes appview atproto
2
fork

Configure Feed

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

fix: switch back to old method

+1 -4
+1 -4
apps/api/src/index.ts
··· 89 89 } 90 90 }); 91 91 92 - app.use('/*', async ctx => { 93 - const html = readFileSync(path.join(env.PUBLIC_DIR, 'index.html')).toString(); 94 - return ctx.html(html); 95 - }); 96 92 app.use('/assets/*', serveStatic({ root: env.PUBLIC_DIR })); 93 + app.use('/*', serveStatic({ root: env.PUBLIC_DIR, rewriteRequestPath: () => 'index.html' })); 97 94 98 95 newIngester().start(); 99 96 serve({