Next.js Discord

Discord Forum

what am I missing? mdx

Unanswered
North Pacific hake posted this in #help-forum
Open in Discord
North Pacific hakeOP
   2 const withMDX = require('@next/mdx')({
   3   extension: /\.mdx?$/,
   4   options: {
   5   │ remarkPlugins: [],
   6   │ rehypePlugins: [],
   7   │ providerImportSource: "@mdx-js/react",
   8   },
   9 });
  10
  11 const nextConfig = {
  12   pageExtensions: ['ts', 'tsx', 'js', 'jsx', 'md', 'mdx'],
  13   reactStrictMode: true,
  14 }
  15
  16 //module.exports = nextConfig
  17 module.exports = withMDX(nextConfig);
my config file above. I installed dependencies and made a mdx file but only italic and bold renders?

0 Replies