Files
pleno-vue/env.d.ts
Jeppe Bundgaard 7f511dd205 Add project guidelines document and adjust VITE_COMMIT_HASH handling
- Introduced `.junie/guidelines.md` to outline project setup, code conventions, and structure.
- Updated `env.d.ts` and `vite.config.js` to standardize `VITE_COMMIT_HASH` usage.
2026-01-05 11:15:48 +01:00

13 lines
315 B
TypeScript

/// <reference types="vite/client" />
interface ImportMetaEnv {
readonly VITE_BUILD_DATE: string,
readonly VITE_APP_VERSION: string,
readonly VITE_COMMIT_HASH: string,
readonly VITE_IS_DEV: string,
}
interface ImportMeta {
readonly env: ImportMetaEnv
}
declare const __APP_GIT_COMMIT__: string