Added ability to debug locally with remote backend
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Jim Martens 2023-08-23 10:41:50 +02:00
parent eb73912fd0
commit be1bc56d33
2 changed files with 14 additions and 1 deletions

View File

@ -100,6 +100,15 @@
}
],
"localize": ["de"]
},
"developmentRemote": {
"buildOptimizer": false,
"optimization": false,
"vendorChunk": true,
"extractLicenses": false,
"sourceMap": true,
"namedChunks": true,
"localize": ["de"]
}
},
"defaultConfiguration": "production"
@ -115,6 +124,9 @@
},
"development": {
"browserTarget": "wahlrecht-frontend:build:development"
},
"developmentRemote": {
"browserTarget": "wahlrecht-frontend:build:developmentRemote"
}
},
"defaultConfiguration": "development"

View File

@ -4,6 +4,7 @@
"scripts": {
"ng": "ng",
"start": "ng serve",
"startRemote": "ng serve -c developmentRemote",
"build": "ng build",
"build:development": "ng build -c development",
"build:development:stats": "ng build -c development --stats-json",
@ -50,4 +51,4 @@
"webpack-bundle-analyzer": "^4.9.0",
"webpack-cli": "^5.1.4"
}
}
}