mirror of
https://github.com/rzmk/learnhouse.git
synced 2025-12-19 04:19:25 +00:00
19 lines
405 B
JavaScript
19 lines
405 B
JavaScript
import createMDX from '@next/mdx';
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
async rewrites() {
|
|
return [
|
|
]
|
|
},
|
|
reactStrictMode: false,
|
|
output: 'standalone',
|
|
pageExtensions: ['js', 'jsx', 'md', 'mdx', 'ts', 'tsx']
|
|
}
|
|
|
|
const withMDX = createMDX({
|
|
// Add markdown plugins here, as desired
|
|
})
|
|
|
|
// Merge MDX config with Next.js config
|
|
export default withMDX(nextConfig);
|