Angular-CLI v8 implemented differential loading. But I don\'t need files built by es5. I want to decrease deploy quantity.
I tried below. But CLI has generated es5 f
Can add below env variables to disable differential loading features. The below works for Windows
"build:prod": "set NG_BUILD_DIFFERENTIAL_FULL=true && ng build --prod",
For Mac
"build:prod": "NG_BUILD_DIFFERENTIAL_FULL=true; ng build --prod",