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