Add VITE_BROWSER to import.meta.env types.

This commit is contained in:
Bauke 2022-03-23 14:04:33 +01:00
parent 08c3f467cf
commit 16b017013a
Signed by: Bauke
GPG Key ID: C1C0F29952BCF558
1 changed files with 1 additions and 0 deletions

1
source/types.d.ts vendored
View File

@ -13,6 +13,7 @@ declare global {
readonly DEV: boolean;
readonly MODE: string;
readonly PROD: boolean;
readonly VITE_BROWSER: 'chromium' | 'firefox';
}
type HtmComponent = ReturnType<typeof html>;