blob: 69377b8959bb4c099f4e8315f001ab452cda4610 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
const [major, minor] = __APP_VERSION__.split('.')
/**
* The app's version in short display form (`<major>.<minor>`), derived
* from the `version` field in `package.json` at build time via Vite's
* `define`. Used in the UI footer.
*/
export const APP_VERSION: string = `${major}.${minor}`
/** The full semver string from `package.json`. */
export const APP_VERSION_FULL: string = __APP_VERSION__
|