Files
sendou.ink/app/utils/git-commit.ts
Kalle 0e3120bd2c
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
Reload page when there is an update
Closes #3185
2026-08-07 23:12:14 +03:00

9 lines
296 B
TypeScript

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__;