aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/frontend/types/ImportMeta.d.ts
blob: c32b48f52532fbc8afdab3c829431c1ccc2a62ad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
interface ImportMeta {
  env: {
    BASE_URL: string;
    DEV: boolean;
    MODE: string;
    PROD: boolean;
    VITE_PACKAGE_NAME: string;
    VITE_PACKAGE_VERSION: string;
  };
}