Skip to content

Instantly share code, notes, and snippets.

@dev-sampsonorson
Created June 16, 2023 15:06
Show Gist options
  • Save dev-sampsonorson/3a9d954cedb32e4ed25fd588d9d7cc0c to your computer and use it in GitHub Desktop.
Save dev-sampsonorson/3a9d954cedb32e4ed25fd588d9d7cc0c to your computer and use it in GitHub Desktop.
Enable sourceMap for script in angular.json during production build
{
//...
"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