-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmiddleware.ts
39 lines (36 loc) · 1.17 KB
/
middleware.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import { NextResponse } from "next/server";
import type { NextRequest } from "next/server";
export function middleware(request: NextRequest) {
// Handle OPTIONS requests (preflight)
if (request.method === "OPTIONS") {
return new NextResponse(null, {
headers: {
"Access-Control-Allow-Origin":
"chrome-extension://hhbkeeppcfngbcplcneanmkecehbkeni",
"Access-Control-Allow-Methods": "GET, POST, PUT, DELETE, OPTIONS",
"Access-Control-Allow-Headers": "Content-Type, Authorization",
"Access-Control-Max-Age": "86400"
}
});
}
// For all other requests, clone the response and add CORS headers
const response = NextResponse.next();
response.headers.set(
"Access-Control-Allow-Origin",
"chrome-extension://hhbkeeppcfngbcplcneanmkecehbkeni"
);
response.headers.set(
"Access-Control-Allow-Methods",
"GET, POST, PUT, DELETE, OPTIONS"
);
response.headers.set(
"Access-Control-Allow-Headers",
"Content-Type, Authorization"
);
response.headers.set("Access-Control-Max-Age", "86400");
return response;
}
// Apply the middleware to all API routes
export const config = {
matcher: "/api/:path*"
};