fix: Make userDialog group icon background transparent

and fixed some vue's error
This commit is contained in:
pa
2025-02-12 12:21:36 +09:00
committed by Natsumi
parent 60d8d7682f
commit 2c59b69720
5 changed files with 33 additions and 37 deletions

View File

@@ -115,13 +115,20 @@ module.exports = {
to: './images/'
}
]
})
}),
new webpack.ProgressPlugin({})
],
optimization: {
minimizer: [
new TerserPlugin({
extractComments: false
extractComments: false,
terserOptions: {
ecma: 2020
}
})
]
},
watchOptions: {
ignored: /node_modules/
}
};