16 lines
286 B
JavaScript
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;
|
|
},
|
|
};
|