mocksaml/next.config.js

15 lines
269 B
JavaScript
Raw Normal View History

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