// next.config.mjs
import createMDX from '@next/mdx'
import rehypeAutolinkHeadings from 'rehype-autolink-headings'
import rehypePrettyCode from 'rehype-pretty-code'
import rehypeSlug from 'rehype-slug'
import remarkGfm from 'remark-gfm'
import remarkMdx from 'remark-mdx'
// Abstract from **next.config.mjs**
const withMDX = createMDX({
options: {
remarkPlugins: [remarkMdx,remarkGfm],
rehypePlugins: [rehypeAutolinkHeadings, rehypePrettyCode, rehypeSlug],
},
})
export default withMDX(nextConfig)
// next.config.mjs
import createMDX from '@next/mdx'
import rehypeAutolinkHeadings from 'rehype-autolink-headings'
import rehypePrettyCode from 'rehype-pretty-code'
import rehypeSlug from 'rehype-slug'
import remarkGfm from 'remark-gfm'
import remarkMdx from 'remark-mdx'
// Abstract from **next.config.mjs**
const withMDX = createMDX({
options: {
remarkPlugins: [remarkMdx,remarkGfm],
rehypePlugins: [rehypeAutolinkHeadings, rehypePrettyCode, rehypeSlug],
},
})
export default withMDX(nextConfig)