munch-ease-frontend/src/env.d.ts
jableader 211489ca55
Some checks failed
CI / build-test (push) Has been cancelled
pruning (#3)
Reviewed-on: #3
Co-authored-by: jableader <jacobdunk@gmail.com>
Co-committed-by: jableader <jacobdunk@gmail.com>
2025-10-25 02:18:30 +00:00

10 lines
217 B
TypeScript

/* Minimal ambient typing for optional import.meta.env usage in tooling */
interface ImportMetaEnv {
readonly VITE_API_BASE_URL?: string
}
declare interface ImportMeta {
readonly env?: ImportMetaEnv
}
export {}