This commit is contained in:
GH Action - Upstream Sync 2023-04-21 07:00:37 +00:00
commit bed296f2c1
2 changed files with 2 additions and 6 deletions

View File

@ -59,6 +59,4 @@ export async function POST(req: NextRequest) {
} }
} }
export const config = { export const runtime = "experimental-edge";
runtime: "edge",
};

View File

@ -30,6 +30,4 @@ export async function GET(req: NextRequest) {
return makeRequest(req); return makeRequest(req);
} }
export const config = { export const runtime = "experimental-edge";
runtime: "edge",
};