import type { NextConfig } from "next"; import createMDX from '@next/mdx'; const nextConfig: NextConfig = { output: 'export', trailingSlash: true, pageExtensions: ['js', 'jsx', 'md', 'mdx', 'ts', 'tsx'], }; const withMDX = createMDX({ extension: /\.mdx?$/, options: { remarkPlugins: ['remark-frontmatter', 'remark-gfm'], rehypePlugins: ['rehype-slug'], }, }); export default withMDX(nextConfig);