| 3 | // Extend Vite's ImportMetaEnv with our custom env vars |
| 4 | declare global { |
| 5 | interface ImportMetaEnv { |
| 6 | // Main process (MAIN_VITE_ prefix) |
| 7 | readonly MAIN_VITE_SENTRY_DSN?: string |
| 8 | readonly MAIN_VITE_POSTHOG_KEY?: string |
| 9 | readonly MAIN_VITE_POSTHOG_HOST?: string |
| 10 | |
| 11 | // Renderer process (VITE_ prefix) |
| 12 | readonly VITE_POSTHOG_KEY?: string |
| 13 | readonly VITE_POSTHOG_HOST?: string |
| 14 | } |
| 15 | } |
| 16 | |
| 17 | export {} |
nothing calls this directly
no outgoing calls
no test coverage detected