9 lines
159 B
TypeScript
9 lines
159 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
interface ImportMeta {
|
|
readonly env: {
|
|
NODE_ENV: "development" | "production";
|
|
VITE_API_BASE?: string;
|
|
};
|
|
}
|