blob: aa6d8933529f6d56c06ac8355e02a34c5838e683 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/// <reference types="vite/client" />
interface ImportMetaEnv {
readonly VITE_API_ENV?: "local" | "production";
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}
declare module "*.css" {
const content: string;
export default content;
}
|