63 lines
1.9 KiB
TypeScript
63 lines
1.9 KiB
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
reactStrictMode: true,
|
|
poweredByHeader: false,
|
|
async headers() {
|
|
return [
|
|
{
|
|
source: "/((?!api/|_next/|.*\\..*).*)",
|
|
headers: [
|
|
{ key: "X-Content-Type-Options", value: "nosniff" },
|
|
{ key: "X-Frame-Options", value: "DENY" },
|
|
{ key: "Referrer-Policy", value: "strict-origin-when-cross-origin" },
|
|
{ key: "X-DNS-Prefetch-Control", value: "off" },
|
|
{
|
|
key: "Permissions-Policy",
|
|
value: "camera=(), microphone=(), geolocation=(), payment=()"
|
|
},
|
|
{
|
|
key: "Content-Security-Policy",
|
|
value: [
|
|
"default-src 'self'",
|
|
"base-uri 'self'",
|
|
"form-action 'self'",
|
|
"frame-ancestors 'none'",
|
|
"object-src 'none'",
|
|
"img-src 'self' data: https:",
|
|
"font-src 'self' https://fonts.googleapis.com https://fonts.gstatic.com",
|
|
"style-src 'self' 'unsafe-inline' https://fonts.googleapis.com",
|
|
"script-src 'self' 'unsafe-inline'",
|
|
"connect-src 'self' https://graph.facebook.com",
|
|
"upgrade-insecure-requests"
|
|
].join("; ")
|
|
}
|
|
]
|
|
},
|
|
{
|
|
source: "/api/:path*",
|
|
headers: [
|
|
{ key: "X-Content-Type-Options", value: "nosniff" },
|
|
{ key: "Referrer-Policy", value: "strict-origin-when-cross-origin" },
|
|
{ key: "X-DNS-Prefetch-Control", value: "off" },
|
|
{
|
|
key: "Content-Security-Policy",
|
|
value: "default-src 'self'; connect-src 'self' https://graph.facebook.com"
|
|
}
|
|
]
|
|
}
|
|
];
|
|
},
|
|
async redirects() {
|
|
return [
|
|
{
|
|
source: "/",
|
|
destination: "/login",
|
|
permanent: false
|
|
}
|
|
];
|
|
}
|
|
};
|
|
|
|
export default nextConfig;
|