env.d.ts 805 B

1234567891011121314151617181920212223
  1. /// <reference types="vite/client" />
  2. /**
  3. * Describes all existing environment variables and their types.
  4. * Required for Code completion and type checking
  5. *
  6. * Note: To prevent accidentally leaking env variables to the client, only variables prefixed with `VITE_` are exposed to your Vite-processed code
  7. *
  8. * @see https://github.com/vitejs/vite/blob/cab55b32de62e0de7d7789e8c2a1f04a8eae3a3f/packages/vite/types/importMeta.d.ts#L62-L69 Base Interface
  9. * @see https://vitejs.dev/guide/env-and-mode.html#env-files Vite Env Variables Doc
  10. */
  11. interface ImportMetaEnv {
  12. /**
  13. * URL where `renderer` web page located.
  14. * Variable initialized in scripts/watch.ts
  15. */
  16. readonly VITE_DEV_SERVER_URL: undefined | string;
  17. }
  18. interface ImportMeta {
  19. readonly env: ImportMetaEnv
  20. }