12 lines
250 B
TypeScript
12 lines
250 B
TypeScript
/// <reference types="vite/client" />
|
|
/// <reference types="vite-plugin-pwa/client" />
|
|
|
|
interface ImportMetaEnv {
|
|
readonly VITE_API_URL?: string;
|
|
// Add more env variables here as needed
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv;
|
|
}
|