mocksaml/next.config.js
2024-12-19 13:36:00 +00:00

16 lines
286 B
JavaScript

/** @type {import('next').NextConfig} */
module.exports = {
reactStrictMode: true,
output: 'standalone',
webpack: (config, { isServer }) => {
if (!isServer) {
config.resolve.fallback = {
fs: false,
zlib: false,
};
}
return config;
},
};