Yidadaa 1 年之前
父节点
当前提交
dc555b2206
共有 1 个文件被更改,包括 0 次插入6 次删除
  1. 0 6
      app/api/cors/[...path]/route.ts

+ 0 - 6
app/api/cors/[...path]/route.ts

@@ -33,12 +33,6 @@ async function handle(
   return fetchResult;
 }
 
-export const GET = handle;
 export const POST = handle;
-export const PUT = handle;
-
-// nextjs dose not support those https methods, sucks
-export const PROFIND = handle;
-export const MKCOL = handle;
 
 export const runtime = "edge";