- 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.
13 lines
315 B
TypeScript
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
|