neurapress/next.config.js
2025-02-02 18:43:45 +08:00

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