fix(met-web): Investigate Openshift/github action deployments - #315
Open
tom0827 wants to merge 1 commit into
Open
fix(met-web): Investigate Openshift/github action deployments#315tom0827 wants to merge 1 commit into
tom0827 wants to merge 1 commit into
Conversation
Addresses the intermittent whitescreen seen on admin sign-in after dev/test deploys. - nginx: serve /assets/ from its own location with try_files $uri =404. Previously a missing content-hashed chunk fell through to index.html and returned 200 with Content-Type: text/html, so the browser parsed HTML as a module script and failed deep in an unrelated vendor chunk. - nginx: Cache-Control no-cache on index.html, the asset manifest, so a client cannot act on a manifest older than the running pod. - regenerate package-lock.json; it still pinned met-formio 2.0.0-rc1 while package.json asked for ^2.0.3. - Dockerfile and CI: npm install -> npm ci, so lock drift fails the build instead of being silently re-resolved. Also makes builds reproducible; two clean builds now emit identical asset filenames.
tom0827
requested review from
Ckoelewyn,
danieltruong,
marklise and
tolkamps1
as code owners
July 29, 2026 15:40
tolkamps1
approved these changes
Jul 29, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Addresses the intermittent whitescreen seen on admin sign-in after dev/test deploys.