vite-env.d.ts 157 B

123456789
  1. /// <reference types="vite/client" />
  2. interface ImportMetaEnv {
  3. readonly VITE_EXAMPLE: string;
  4. }
  5. interface ImportMeta {
  6. readonly env: ImportMetaEnv;
  7. }