13 lines
263 B
JavaScript
13 lines
263 B
JavaScript
const withMDX = require("@next/mdx")();
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
pageExtensions: ["js", "jsx", "mdx"],
|
|
experimental: {
|
|
mdxRs: true,
|
|
},
|
|
reactStrictMode: false,
|
|
};
|
|
|
|
module.exports = withMDX(nextConfig);
|