new prod env #3

Merged
kyle merged 13 commits from development into main 2026-02-09 12:59:10 -06:00
Showing only changes of commit 8b271f93ac - Show all commits

View File

@@ -527,9 +527,9 @@ async function initializeServer() {
...routes,
// Fallback to TanStack Start handler for all other routes
'/*': (req: Request) => {
'/*': async (req: Request) => {
try {
return handler.fetch(req)
return await handler.fetch(req)
} catch (error) {
log.error(`Server handler error: ${String(error)}`)
return new Response('Internal Server Error', { status: 500 })