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