mirror of
https://github.com/ThisIsBenny/wishlist-app.git
synced 2025-04-18 23:07:41 +00:00
9 lines
185 B
TypeScript
9 lines
185 B
TypeScript
/// <reference types="vite/client" />
|
|
interface ImportMetaEnv {
|
|
readonly VITE_API_BASEURL: string
|
|
// more env variables...
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv
|
|
}
|