svrjs-nextjs-website/app/api/uploadthing/route.ts

10 lines
273 B
TypeScript
Raw Normal View History

2024-06-20 19:46:48 +02:00
import { createRouteHandler } from "uploadthing/next";
import { ourFileRouter } from "./core";
// Force the API to use SSR instead of static generation
export const dynamic = "force-dynamic";
2024-06-20 19:46:48 +02:00
export const { GET, POST } = createRouteHandler({
router: ourFileRouter,
});