mirror of
https://github.com/makeplane/plane.git
synced 2025-12-16 11:57:56 +01:00
14 lines
380 B
JavaScript
14 lines
380 B
JavaScript
|
|
import { next } from '@vercel/edge';
|
||
|
|
|
||
|
|
export default function middleware() {
|
||
|
|
return next({
|
||
|
|
headers: {
|
||
|
|
'Referrer-Policy': 'origin-when-cross-origin',
|
||
|
|
'X-Frame-Options': 'DENY',
|
||
|
|
'X-Content-Type-Options': 'nosniff',
|
||
|
|
'X-DNS-Prefetch-Control': 'on',
|
||
|
|
'Strict-Transport-Security':
|
||
|
|
'max-age=31536000; includeSubDomains; preload',
|
||
|
|
},
|
||
|
|
});
|
||
|
|
}
|