mirror of
https://github.com/privacy-scaling-explorations/pse.dev.git
synced 2026-01-12 23:58:15 -05:00
21 lines
392 B
JavaScript
21 lines
392 B
JavaScript
import nextMdx from "@next/mdx"
|
|
|
|
const withMDX = nextMdx({
|
|
extension: /\.mdx?$/,
|
|
options: {
|
|
remarkPlugins: [],
|
|
rehypePlugins: [],
|
|
},
|
|
})
|
|
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
pageExtensions: ["js", "jsx", "mdx", "ts", "tsx", "md"],
|
|
reactStrictMode: true,
|
|
experimental: {
|
|
appDir: true,
|
|
mdxRs: true,
|
|
},
|
|
}
|
|
|
|
export default withMDX(nextConfig)
|