11 lines
229 B
TypeScript
11 lines
229 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
interface ImportMetaEnv {
|
|
readonly VITE_LANG_DEFAULT: string;
|
|
// Aggiungi qui altre variabili d'ambiente di Vite se necessarie
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv;
|
|
}
|