15 lines
331 B
JavaScript
15 lines
331 B
JavaScript
const withMDX = require("@next/mdx")({
|
|
extension: /\.mdx?$/,
|
|
options: {
|
|
remarkPlugins: [],
|
|
rehypePlugins: [],
|
|
providerImportSource: "@mdx-js/react",
|
|
},
|
|
});
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
module.exports = withMDX({
|
|
reactStrictMode: true,
|
|
pageExtensions: ["ts", "tsx", "js", "jsx", "md", "mdx"],
|
|
});
|