File size: 1,234 Bytes
4e1096a | 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 40 41 42 43 44 45 46 47 48 49 50 | import { NextRequest, NextResponse } from 'next/server';
const allowedOrigins = [
'https://web.readest.com',
'https://tauri.localhost',
'http://tauri.localhost',
'http://localhost:3000',
'http://localhost:3001',
'tauri://localhost',
];
const corsOptions = {
'Access-Control-Allow-Methods': 'GET, POST, PUT, DELETE, OPTIONS',
'Access-Control-Allow-Headers': '*',
'Access-Control-Max-Age': '86400',
};
export function middleware(request: NextRequest) {
const origin = request.headers.get('origin') ?? '';
const isAllowedOrigin = allowedOrigins.includes(origin);
if (request.method === 'OPTIONS') {
const preflightHeaders = new Headers({
...corsOptions,
...(isAllowedOrigin && { 'Access-Control-Allow-Origin': origin }),
});
return new NextResponse(null, {
status: 200,
headers: preflightHeaders,
});
}
const response = NextResponse.next();
if (isAllowedOrigin) {
response.headers.set('Access-Control-Allow-Origin', origin);
}
Object.entries(corsOptions).forEach(([key, value]) => {
response.headers.set(key, value);
});
return response;
}
export const config = {
matcher: ['/api/:path*', '/api/stripe/:path*', '/api/metadata/:path*'],
};
|