MOBILE-3664 angular: Don't optimize scripts

The scripts optimization needs to be disabled to make site plugins work
main
Dani Palou 2021-03-04 12:55:12 +01:00
parent f5a7da148f
commit 3c54bd3b72
1 changed files with 6 additions and 3 deletions

View File

@ -40,7 +40,10 @@
}, },
"configurations": { "configurations": {
"production": { "production": {
"optimization": true, "optimization": {
"scripts": false,
"styles": true
},
"outputHashing": "all", "outputHashing": "all",
"sourceMap": false, "sourceMap": false,
"extractCss": true, "extractCss": true,
@ -52,8 +55,8 @@
"budgets": [ "budgets": [
{ {
"type": "initial", "type": "initial",
"maximumWarning": "2mb", "maximumWarning": "50mb",
"maximumError": "5mb" "maximumError": "100mb"
} }
] ]
}, },