const withMDX = require("@next/mdx")({ extension: /\.mdx?$/, }); /** @type {import('next').NextConfig} */ const nextConfig = withMDX({ reactStrictMode: true, swcMinify: true, pageExtensions: ["js", "jsx", "ts", "tsx", "md", "mdx"], }); module.exports = nextConfig;