aboutsummaryrefslogtreecommitdiff
path: root/env.d.ts
blob: 18bdc8fe6d20a1ec5bc96ec7b19c19a2a2d2f2f9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/// <reference types="vite/client" />
/// <reference types="vite-svg-loader" />

interface ImportMetaEnv {
  VITE_PLAUSIBLE_API_HOST: string;
  VITE_PLAUSIBLE_DOMAIN: string;
  PACKAGE_VERSION: string;
  GIT_SHORT_SHA: string;
  PROD: boolean;
}

interface ImportMeta {
  readonly env: ImportMetaEnv;
}