hopefully fix
All checks were successful
CI/CD Pipeline / Build and Push App Docker Image (push) Successful in 1m15s
CI/CD Pipeline / Build and Push PocketBase Docker Image (push) Successful in 6s
CI/CD Pipeline / Deploy to Kubernetes (push) Successful in 43s

This commit is contained in:
yohlo
2026-02-09 00:42:44 -06:00
parent 8b271f93ac
commit 6370ebe48a

View File

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