-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmiddleware.ts
More file actions
72 lines (62 loc) · 2.13 KB
/
middleware.ts
File metadata and controls
72 lines (62 loc) · 2.13 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
import { NextResponse } from 'next/server';
import type { NextRequest } from 'next/server';
const securityHeaders = {
'X-Frame-Options': 'DENY',
'X-Content-Type-Options': 'nosniff',
'Referrer-Policy': 'strict-origin-when-cross-origin',
'X-DNS-Prefetch-Control': 'on',
'Strict-Transport-Security': 'max-age=63072000; includeSubDomains; preload',
'Permissions-Policy': 'camera=(), microphone=(), geolocation=()',
'Content-Security-Policy': [
"default-src 'self'",
"script-src 'self' 'unsafe-inline' 'unsafe-eval' https://us.i.posthog.com https://us-assets.i.posthog.com",
"style-src 'self' 'unsafe-inline'",
"img-src 'self' data: blob: https://*.amazonaws.com https://*.supabase.co https://*.googleusercontent.com",
"font-src 'self' data:",
"connect-src 'self' https://us.i.posthog.com https://*.amazonaws.com https://*.supabase.co https://api.vapi.ai",
"frame-ancestors 'none'",
"base-uri 'self'",
"form-action 'self'",
].join('; '),
};
export function middleware(request: NextRequest) {
const { pathname } = request.nextUrl;
// Explicit favicon handling - ensure it serves from public directory
if (pathname === '/favicon.ico') {
return NextResponse.next();
}
// Skip middleware for static files only
if (
pathname.startsWith('/_next/') ||
pathname.startsWith('/static/') ||
pathname.includes('.') // This catches .js, .css, .png, etc.
) {
return NextResponse.next();
}
// Skip for known static routes
const staticRoutes = [
'/robots.txt',
'/sitemap.xml',
'/manifest.json'
];
if (staticRoutes.includes(pathname)) {
return NextResponse.next();
}
// Apply security headers to all responses
const response = NextResponse.next();
for (const [key, value] of Object.entries(securityHeaders)) {
response.headers.set(key, value);
}
return response;
}
export const config = {
matcher: [
/*
* Match all request paths except for the ones starting with:
* - _next/static (static files)
* - _next/image (image optimization files)
* - favicon.ico (favicon file)
*/
'/((?!_next/static|_next/image|favicon.ico).*)',
],
};