const withMDX = require('@next/mdx')() /** @type {import('next').NextConfig} */ const nextConfig = { reactStrictMode: true, pageExtensions: ['js', 'jsx', 'mdx', 'ts', 'tsx'], // Optionally, add any other Next.js config below } module.exports = withMDX(nextConfig)