17 lines
392 B
JavaScript
17 lines
392 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
async headers() {
|
|
return [
|
|
{
|
|
// Test environment — hard noindex at the header level too.
|
|
source: "/:path*",
|
|
headers: [
|
|
{ key: "X-Robots-Tag", value: "noindex, nofollow, noarchive, nosnippet" },
|
|
],
|
|
},
|
|
];
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|