📅  最后修改于: 2022-03-11 15:02:22.690000             🧑  作者: Mango
module.exports = {
webpack: (config, { isServer }) => {
// Fixes npm packages that depend on `fs` module
if (!isServer) {
config.node = {
fs: 'empty'
}
}
return config
}
}