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.

feat: vite now works in hono :D

+2 -2
+1 -1
apps/api/src/auth/client.ts
··· 5 5 import { Context } from "hono"; 6 6 7 7 export const getClient = async (ctx: Context) => { 8 - let appUrl = 'https://cookware.hayden.moe'; 8 + let appUrl = 'https://cookware.fly.dev'; 9 9 if (env.ENV == 'development') { 10 10 appUrl = `https://${ctx.req.header('Host')}`; 11 11 }
+1 -1
apps/api/src/index.ts
··· 88 88 } 89 89 }); 90 90 91 - app.use('/*', serveStatic({ root: './public', index: 'index.html' })); 91 + app.use('/*', serveStatic({ root: './public', index: 'index.html', rewriteRequestPath: (_path) => `/index.html` })); 92 92 93 93 newIngester().start(); 94 94 serve({