blob: aa6d8933529f6d56c06ac8355e02a34c5838e683 (
plain) (
tree)
|
|
/// <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;
}
|