Files
CRAPP/src/start.ts
T

32 lines
1.0 KiB
TypeScript
Raw Normal View History

2026-08-06 08:36:47 +02:00
import { createStart, createCsrfMiddleware, createMiddleware } from "@tanstack/react-start";
import { renderErrorPage } from "./lib/error-page";
import { attachPocketBaseAuth } from "@/integrations/pocketbase/auth-attacher";
2026-08-06 08:36:47 +02:00
const errorMiddleware = createMiddleware().server(async ({ next }) => {
try {
return await next();
} catch (error) {
if (error != null && typeof error === "object" && "statusCode" in error) {
throw error;
}
console.error(error);
return new Response(renderErrorPage(), {
status: 500,
headers: { "content-type": "text/html; charset=utf-8" },
});
}
});
// Start installs this automatically when src/start.ts is absent; defining the
// file opts out, so re-add it explicitly to keep server functions protected
// from cross-site requests.
const csrfMiddleware = createCsrfMiddleware({
filter: (ctx) => ctx.handlerType === "serverFn",
});
export const startInstance = createStart(() => ({
functionMiddleware: [attachPocketBaseAuth],
2026-08-06 08:36:47 +02:00
requestMiddleware: [errorMiddleware, csrfMiddleware],
}));