Files
NoteNextra-origin/next.config.mjs
Zheyuan Wu 92e6de21d5 fix katex
2025-07-10 15:30:16 -05:00

33 lines
723 B
JavaScript

import nextra from 'nextra'
import withBundleAnalyzer from '@next/bundle-analyzer'
const withNextra = nextra({
latex: {
renderer: 'katex',
options: {
// suppress warnings from katex for `\\`
strict: false,
}
},
mdxOptions: {
format: 'detect'
},
contentDirBasePath: '/'
})
const bundleAnalyzer = withBundleAnalyzer({
enabled: process.env.ANALYZE === 'true'
})
export default bundleAnalyzer(withNextra({
output: 'standalone',
eslint: {
ignoreDuringBuilds: true,
},
experimental: {
webpackMemoryOptimizations: true,
},
}))
// If you have other Next.js configurations, you can pass them as the parameter:
// export default withNextra({ /* other next.js config */ })