next.js/test/integration/plugin-mdx-rs/next.config.js
next.config.js10 lines176 B
const withMDX = require('@next/mdx')({
  extension: /\.mdx?$/,
})
module.exports = withMDX({
  pageExtensions: ['js', 'jsx', 'mdx'],
  experimental: {
    mdxRs: true,
  },
})
Quest for Codev2.0.0
/
SIGN IN