mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-01-23 02:36:05 +00:00
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:
parent
32fba869a4
commit
b411a6fc6e
1 changed files with 8 additions and 2 deletions
10
angular.json
10
angular.json
|
|
@ -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",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue