it-tools/env.d.ts

14 lines
298 B
TypeScript
Raw Normal View History

2022-03-31 00:33:29 +02:00
/// <reference types="vite/client" />
2022-04-14 22:41:51 +02:00
/// <reference types="vite-svg-loader" />
2022-04-16 11:45:50 +02:00
interface ImportMetaEnv {
2022-04-16 11:51:20 +02:00
VITE_PLAUSIBLE_API_HOST: string;
VITE_PLAUSIBLE_DOMAIN: string;
2022-04-16 11:45:50 +02:00
PACKAGE_VERSION: string;
PROD: boolean;
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}