18 lines
429 B
JavaScript
18 lines
429 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
swcMinify: true,
|
|
// Ensure external packages are handled correctly
|
|
transpilePackages: ['mermaid', 'katex'],
|
|
// Configure webpack if needed
|
|
webpack: (config) => {
|
|
// Handle mermaid.js
|
|
config.resolve.fallback = {
|
|
...config.resolve.fallback,
|
|
fs: false,
|
|
};
|
|
return config;
|
|
},
|
|
}
|
|
|
|
module.exports = nextConfig
|