2026-03-16 18:16:34 -07:00
|
|
|
/** Vite-style import.meta.env, shared across app and node tsconfigs. */
|
|
|
|
|
interface ImportMetaEnv {
|
2026-03-20 22:19:54 -07:00
|
|
|
readonly VITE_LOG?: string;
|
2026-03-16 18:16:34 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
interface ImportMeta {
|
|
|
|
|
readonly env: ImportMetaEnv;
|
|
|
|
|
}
|