learnhouse/apps/web/next.config.mjs

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);