import { createMDX } from "fumadocs-mdx/next"; 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", }, ], }, ]; }, }; const withMDX = createMDX(); export default withMDX(nextConfig);