mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2024-11-25 16:26:25 +00:00
97dde2d1f3
* Added https and server url is read from the env now * Added the new key to the vite.env.d.ts
13 lines
290 B
TypeScript
13 lines
290 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
interface ImportMetaEnv {
|
|
readonly VITE_BYPASS_LOGIN?: string;
|
|
readonly VITE_BYPASS_TUTORIAL?: string;
|
|
readonly VITE_API_BASE_URL?: string;
|
|
readonly VITE_SERVER_URL?: string;
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv
|
|
}
|