update next config

This commit is contained in:
Triston Armstrong 2023-12-25 22:04:13 -06:00
parent 060815395a
commit 52969bebfa
2 changed files with 1 additions and 5 deletions

View File

View File

@ -1,10 +1,6 @@
module.exports = {
swcMinify: true,
webpack: (config) => {
config.resolve.fallback = {
fs: false,
buffer: false
};
config.resolve.fallback = { ...config.resolve.fallback, fs: false };
return config;
},
}