Socialvoid-React/next.config.js

12 lines
241 B
JavaScript
Raw Normal View History

2021-11-13 08:21:35 +01:00
/** @type {import('next').NextConfig} */
module.exports = {
reactStrictMode: true,
2021-11-13 19:22:28 +01:00
webpack: (config) => {
if (typeof config.resolve.fallback !== 'undefined') {
config.resolve.fallback.fs = false
}
return config
},
2021-11-13 08:21:35 +01:00
}