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;