diff --git a/apps/dashboard/src/app/api/v1/route.ts b/apps/dashboard/src/app/api/v1/route.ts index 6273efe0..cb533bc6 100644 --- a/apps/dashboard/src/app/api/v1/route.ts +++ b/apps/dashboard/src/app/api/v1/route.ts @@ -1,6 +1,7 @@ import { NextResponse } from "next/server"; export const dynamic = "force-dynamic"; +export const runtime = "edge"; export const GET = async () => { return NextResponse.json({ message: "Hello, world!" });