Skip to content

Commit

Permalink
frontend: Add source maps in the browser (#2043)
Browse files Browse the repository at this point in the history
* Enable source maps in both development and production.

Signed-off-by: Elena Zioga <[email protected]>

Signed-off-by: Elena Zioga <[email protected]>
  • Loading branch information
elenzio9 authored Jan 16, 2023
1 parent d76f01e commit 1a128ae
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions pkg/new-ui/v1beta1/frontend/angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,12 @@
"vendorChunk": true,
"extractLicenses": false,
"buildOptimizer": false,
"sourceMap": true,
"sourceMap": {
"scripts": true,
"styles": true,
"hidden": false,
"vendor": true
},
"optimization": false,
"namedChunks": true
},
Expand All @@ -54,7 +59,12 @@
],
"optimization": true,
"outputHashing": "all",
"sourceMap": false,
"sourceMap": {
"scripts": true,
"styles": true,
"hidden": false,
"vendor": true
},
"namedChunks": false,
"extractLicenses": true,
"vendorChunk": false,
Expand Down

0 comments on commit 1a128ae

Please sign in to comment.