fix: #1931 try to fix cors issues

This commit is contained in:
Yidadaa
2023-06-15 00:28:47 +08:00
parent 76fdd047e7
commit 0fb775d71a
2 changed files with 11 additions and 4 deletions

View File

@@ -12,6 +12,10 @@ async function handle(
) {
console.log("[OpenAI Route] params ", params);
if (req.method === "OPTIONS") {
return NextResponse.json({ body: "OK" }, { status: 200 });
}
const subpath = params.path.join("/");
if (!ALLOWD_PATH.has(subpath)) {