Created
June 16, 2023 15:06
-
-
Save dev-sampsonorson/3a9d954cedb32e4ed25fd588d9d7cc0c to your computer and use it in GitHub Desktop.
Enable sourceMap for script in angular.json during production build
This file contains hidden or 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
Show hidden characters
{ | |
//... | |
"architect": { | |
"build": { | |
//... | |
"configuration": { | |
"production": { | |
"sourceMap": { | |
"script": true, | |
"hidden": false, | |
"styles": false, | |
"vendor": false | |
} | |
} | |
} | |
} | |
} | |
//... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment