diff --git a/next.config.js b/next.config.js index 063e9c2a..3d2436d7 100644 --- a/next.config.js +++ b/next.config.js @@ -7,7 +7,10 @@ module.exports = withPlugins([optimizedImages], nextConfig); module.exports = { webpack5: true, webpack: (config) => { - config.resolve.fallback = { fs: false }; + config.resolve.fallback = { + fs: false, + path: false + }; return config; },