14 lines
370 B
TypeScript
14 lines
370 B
TypeScript
/// <reference types="vite/client" />
|
|
// src/vite-env.d.ts
|
|
interface ImportMetaEnv {
|
|
readonly VITE_APP_VERSION: string;
|
|
readonly VITE_APP_COMMIT_MESSAGE: string;
|
|
readonly VITE_APP_COMMIT_URL: string;
|
|
readonly VITE_GOOGLE_MAPS_EMBED_API_KEY: string;
|
|
// Add any other environment variables you use here
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv;
|
|
}
|