mirror of
https://github.com/makeplane/plane.git
synced 2025-12-22 06:39:31 +01:00
15 lines
374 B
JavaScript
15 lines
374 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",
|
||
|
|
},
|
||
|
|
});
|
||
|
|
}
|
||
|
|
|