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