mocksaml/next.config.js
2022-02-17 21:43:25 +05:30

15 lines
269 B
JavaScript

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