mocksaml/next.config.js

16 lines
286 B
JavaScript
Raw Permalink Normal View History

2022-01-08 15:11:13 +00:00
/** @type {import('next').NextConfig} */
module.exports = {
reactStrictMode: true,
output: 'standalone',
2022-02-17 16:13:25 +00:00
webpack: (config, { isServer }) => {
if (!isServer) {
2022-02-18 08:56:42 +00:00
config.resolve.fallback = {
fs: false,
zlib: false,
};
2022-02-17 16:13:25 +00:00
}
return config;
2022-02-18 08:56:42 +00:00
},
};