Files
reducelink/next.config.ts
T

56 lines
1.1 KiB
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
compress: true,
poweredByHeader: false,
async headers() {
return [
{
source: "/(.*)",
headers: [
{
key: "X-Content-Type-Options",
value: "nosniff",
},
{
key: "X-Frame-Options",
value: "DENY",
},
{
key: "X-XSS-Protection",
value: "1; mode=block",
},
{
key: "Referrer-Policy",
value: "strict-origin-when-cross-origin",
},
{
key: "Permissions-Policy",
value: "camera=(), microphone=(), geolocation=()",
},
],
},
{
source: "/manifest.json",
headers: [
{
key: "Cache-Control",
value: "public, max-age=604800, immutable",
},
],
},
];
},
async redirects() {
return [
{
source: "/index",
destination: "/",
permanent: true,
},
];
},
};
export default nextConfig;