Everything is working fine yesterday, today when start my angular 11 project, I got stock on "/ Generating browser application bundles (phase: building)..." have anyone experienced this, or can give me advice on how to move forward.
Just keep in mind that you might have to do some changes in your angular.json
file.
architect > build > configuration
section add:"development": {
"buildOptimizer": false,
"optimization": false,
"vendorChunk": true,
"extractLicenses": false,
"sourceMap": true,
"namedChunks": true
},
architect > build
"defaultConfiguration": "production"
architect > serve > configuration
section add: "development": {
"browserTarget": "{{PROJECT_NAME}}:build:development"
}
Note: You should put the actual project name in the place of {{PROJECT_NAME}} e.g. "browserTarget": "my-project:build:development"
architect > serve
section add:"defaultConfiguration": "development"
Same error here.
Cause: There was a .css file wich only contained comments.
Solution: Delete all comments in this file, or add at least one css class.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With