feat(web): show app version in sidebar footer via Vite define

Reads version from root package.json at build time and injects it
as __APP_VERSION__ via Vite define, replacing the hardcoded "API v3".
This commit is contained in:
Offending Commit
2026-04-27 14:33:26 -05:00
parent 123828ccb6
commit 7848d69524
3 changed files with 13 additions and 5 deletions

1
packages/web/src/vite-env.d.ts vendored Normal file
View File

@@ -0,0 +1 @@
declare const __APP_VERSION__: string;