19 lines
359 B
JavaScript
19 lines
359 B
JavaScript
import createMDX from '@next/mdx';
|
|
|
|
const nextConfig = createMDX({
|
|
extension: /\.mdx?$/u,
|
|
})({
|
|
eslint: {
|
|
ignoreDuringBuilds: true,
|
|
},
|
|
experimental: {
|
|
mdxRs: true,
|
|
},
|
|
output: 'standalone',
|
|
pageExtensions: ['js', 'jsx', 'ts', 'tsx', 'md', 'mdx'],
|
|
reactStrictMode: true,
|
|
transpilePackages: ['@repo/ui'],
|
|
});
|
|
|
|
export default nextConfig;
|