diff --git a/src/vite.env.d.ts b/src/vite.env.d.ts new file mode 100644 index 00000000000..50bb7dddc02 --- /dev/null +++ b/src/vite.env.d.ts @@ -0,0 +1,11 @@ +/// + +interface ImportMetaEnv { + readonly VITE_BYPASS_LOGIN?: string; + readonly VITE_BYPASS_TUTORIAL?: string; + readonly VITE_API_BASE_URL?: string; +} + +interface ImportMeta { + readonly env: ImportMetaEnv +} diff --git a/vite.env.d.ts b/vite.env.d.ts deleted file mode 100644 index 1bb3a15b588..00000000000 --- a/vite.env.d.ts +++ /dev/null @@ -1,11 +0,0 @@ -/// - -interface ImportMetaEnv { - readonly VITE_BYPASS_LOGIN: string; - readonly VITE_BYPASS_TUTORIAL: string; - readonly VITE_API_BASE_URL: string; -} - -interface ImportMeta { - readonly env: ImportMetaEnv; -} \ No newline at end of file