fix: webpack build error, restrict space in public username

This commit is contained in:
RaktimaNXG
2024-07-12 13:00:36 +05:30
parent 8263e3247e
commit 0ac3a70a83
4 changed files with 15 additions and 24 deletions
+1 -1
View File
@@ -64,7 +64,7 @@ module.exports = {
: [])
],
optimization: {
minimize: isProduction,
minimize: isProduction ? true : false,
minimizer: [new TerserPlugin()]
},
devtool: isProduction ? "source-map" : "inline-source-map"