mocksaml/next.config.js

17 lines
353 B
JavaScript
Raw Normal View History

2022-01-08 15:11:13 +00:00
/** @type {import('next').NextConfig} */
module.exports = {
2023-10-28 23:21:15 +00:00
experimental: { esmExternals: false, webpackBuildWorker: true },
2022-01-08 15:11:13 +00:00
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
},
};