mirror of
https://github.com/AutoMaker-Org/automaker.git
synced 2026-03-17 10:03:08 +00:00
16 lines
385 B
TypeScript
16 lines
385 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
interface ImportMetaEnv {
|
|
readonly VITE_SERVER_URL?: string;
|
|
readonly VITE_APP_MODE?: '1' | '2' | '3' | '4';
|
|
}
|
|
|
|
// Extend ImportMeta to include env property
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv;
|
|
}
|
|
|
|
// Global constants defined in vite.config.mts
|
|
declare const __APP_VERSION__: string;
|
|
declare const __APP_BUILD_HASH__: string;
|