zapishis-client/apps/web/next.config.js
2025-10-14 14:59:58 +03:00

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;