next.js/examples/mdx/next.config.js
next.config.js11 lines237 B
/** @type {import('next').NextConfig} */
const nextConfig = {
  pageExtensions: ["js", "jsx", "ts", "tsx", "mdx"],
  experimental: {
    mdxRs: true,
  },
};

const withMDX = require("@next/mdx")();
module.exports = withMDX(nextConfig);
Quest for Codev2.0.0
/
SIGN IN