Files
landing-web/next.config.ts
T
2026-07-08 20:27:54 +02:00

21 lines
382 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: "standalone",
async headers() {
return [
{
source: "/:path*",
headers: [
{
key: "X-Robots-Tag",
value: "noindex, nofollow, noarchive, nosnippet, noimageindex",
},
],
},
];
},
};
export default nextConfig;