fix(build): fix Android CI build by correcting Angular output paths

- Update productionWeb and stageWeb configurations to use proper outputPath format
- Use object format with base: "dist" and browser: "browser" to ensure output goes to dist/browser
- Fixes "The web assets directory must contain an index.html file" error during npm run sync:android
- Ensures compatibility with Angular 19 application builder output structure
This commit is contained in:
Johannes Millan 2025-06-27 14:07:04 +02:00
parent 32fba869a4
commit b411a6fc6e

View file

@ -97,7 +97,10 @@
"serviceWorker": "ngsw-config.json"
},
"productionWeb": {
"outputPath": "dist/browser",
"outputPath": {
"base": "dist",
"browser": "browser"
},
"budgets": [
{
"type": "anyComponentStyle",
@ -155,7 +158,10 @@
"serviceWorker": false
},
"stageWeb": {
"outputPath": "dist/browser",
"outputPath": {
"base": "dist",
"browser": "browser"
},
"budgets": [
{
"type": "anyComponentStyle",