[QoL] Fix Final VS Code Error (#1608)

* Fix i18next and mobile errors

* Move File and Fix Error
This commit is contained in:
Benjamin Odom 2024-05-30 13:37:59 -05:00 committed by GitHub
parent 13797fe322
commit 1415b74682
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 11 additions and 11 deletions

11
src/vite.env.d.ts vendored Normal file
View File

@ -0,0 +1,11 @@
/// <reference types="vite/client" />
interface ImportMetaEnv {
readonly VITE_BYPASS_LOGIN?: string;
readonly VITE_BYPASS_TUTORIAL?: string;
readonly VITE_API_BASE_URL?: string;
}
interface ImportMeta {
readonly env: ImportMetaEnv
}

11
vite.env.d.ts vendored
View File

@ -1,11 +0,0 @@
/// <reference types="vite/client" />
interface ImportMetaEnv {
readonly VITE_BYPASS_LOGIN: string;
readonly VITE_BYPASS_TUTORIAL: string;
readonly VITE_API_BASE_URL: string;
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}