Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:

- name: Install and Build
run: |
npm install
npm ci
npm install @angular/cli > /dev/null
npx ng build

Expand Down
2 changes: 1 addition & 1 deletion angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
"with": "src/environments/environment.prod.ts"
}
],
"outputHashing": "all"
"outputHashing": "bundles"
Copy link

Copilot AI Oct 7, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Changing from 'all' to 'bundles' reduces cache busting effectiveness. While this may resolve 404s, it means that changes to individual files within bundles won't trigger cache invalidation, potentially serving stale content to users. Consider if the root cause of 404s can be addressed through proper server configuration instead.

Suggested change
"outputHashing": "bundles"
"outputHashing": "all"

Copilot uses AI. Check for mistakes.
},
"development": {
"buildOptimizer": false,
Expand Down