From 1415b746826b49bd4841cf14ac6b6d320f95c1c5 Mon Sep 17 00:00:00 2001 From: Benjamin Odom Date: Thu, 30 May 2024 13:37:59 -0500 Subject: [PATCH] [QoL] Fix Final VS Code Error (#1608) * Fix i18next and mobile errors * Move File and Fix Error --- src/vite.env.d.ts | 11 +++++++++++ vite.env.d.ts | 11 ----------- 2 files changed, 11 insertions(+), 11 deletions(-) create mode 100644 src/vite.env.d.ts delete mode 100644 vite.env.d.ts 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