env.d.ts 303 B

1234567891011121314
  1. /// <reference types="vite/client" />
  2. /// <reference types="vite-svg-loader" />
  3. interface ImportMetaEnv {
  4. VITE_PLAUSIBLE_API_HOST: string;
  5. VITE_PLAUSIBLE_DOMAIN: string;
  6. PACKAGE_VERSION: string;
  7. GIT_SHORT_SHA: string;
  8. PROD: boolean;
  9. }
  10. interface ImportMeta {
  11. readonly env: ImportMetaEnv;
  12. }