Reload page when there is an update
Some checks are pending
E2E Tests / e2e (push) Waiting to run
Tests and checks on push / run-checks-and-tests (push) Waiting to run
Updates translation progress / update-translation-progress-issue (push) Waiting to run

Closes #3185
This commit is contained in:
Kalle
2026-08-07 23:12:14 +03:00
parent c47a0614fb
commit 0e3120bd2c
4 changed files with 50 additions and 5 deletions

8
app/utils/git-commit.ts Normal file
View File

@@ -0,0 +1,8 @@
declare const __GIT_COMMIT__: string;
/**
* Commit the running bundle was built from. Inlined at build time, meaning the
* client and the server report their own build's commit. Empty string outside
* of deployed builds (e.g. local development).
*/
export const GIT_COMMIT = __GIT_COMMIT__;