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": {
"production": {
"optimization": true,
"optimization": {
"scripts": false,
"styles": true
},
"outputHashing": "all",
"sourceMap": false,
"extractCss": true,
@ -52,8 +55,8 @@
"budgets": [
{
"type": "initial",
"maximumWarning": "2mb",
"maximumError": "5mb"
"maximumWarning": "50mb",
"maximumError": "100mb"
}
]
},