Files
routeros-traffic/frontend/next.config.js
Mateusz Gruszczyński 5429f176c9 first commit
2026-03-04 15:21:03 +01:00

18 lines
374 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
poweredByHeader: false,
async headers() {
return [
{
source: "/(.*)",
headers: [
{ key: "X-Frame-Options", value: "DENY" },
{ key: "X-Content-Type-Options", value: "nosniff" }
]
}
];
}
};
module.exports = nextConfig;