10 lines
222 B
JavaScript
10 lines
222 B
JavaScript
import createMDX from '@next/mdx'
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
pageExtensions: ['js', 'jsx', 'ts', 'tsx', 'mdx'],
|
|
reactStrictMode: true,
|
|
}
|
|
|
|
export default createMDX()(nextConfig);
|