Last active
February 11, 2023 06:18
-
-
Save tieppt/35f7862bb8512c17926cb8456c0bfb06 to your computer and use it in GitHub Desktop.
Angular v12 configuration file - angular.json - for ng serve with development by default
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"architect": { | |
"build": { | |
"builder": "@angular-devkit/build-angular:browser", | |
"configurations": { | |
"production": { | |
"budgets": [ | |
], | |
"outputHashing": "all" | |
}, | |
"development": { | |
"buildOptimizer": false, | |
"optimization": false, | |
"vendorChunk": true, | |
"extractLicenses": false, | |
"sourceMap": true, | |
"namedChunks": true | |
} | |
}, | |
"defaultConfiguration": "production" | |
}, | |
"serve": { | |
"builder": "@angular-devkit/build-angular:dev-server", | |
"configurations": { | |
"production": { | |
"browserTarget": "erp:build:production" | |
}, | |
"development": { | |
"browserTarget": "erp:build:development" | |
} | |
}, | |
"defaultConfiguration": "development" | |
}, | |
... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment