-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
51 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
/// <reference types="vite/client" /> | ||
interface ImportMetaEnv { | ||
// Auto generate by env-parse | ||
/** | ||
* 应用配置面板 | ||
*/ | ||
readonly VITE_APP_SETTING: boolean | ||
/** | ||
* 页面标题 | ||
*/ | ||
readonly VITE_APP_TITLE: string | ||
/** | ||
* 接口请求地址,会设置到 axios 的 baseURL 参数上 | ||
*/ | ||
readonly VITE_APP_API_BASEURL: string | ||
/** | ||
* 调试工具,可设置 eruda 或 vconsole,如果不需要开启则留空 | ||
*/ | ||
readonly VITE_APP_DEBUG_TOOL: string | ||
/** | ||
* 是否开启代理 | ||
*/ | ||
readonly VITE_OPEN_PROXY: boolean | ||
/** | ||
* 是否开启开发者工具 | ||
*/ | ||
readonly VITE_OPEN_DEVTOOLS: boolean | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters