10 lines
146 B
TypeScript
10 lines
146 B
TypeScript
|
|
/// <reference types="vite/client" />
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Vite 环境变量类型声明
|
||
|
|
*/
|
||
|
|
|
||
|
|
interface ImportMetaEnv {
|
||
|
|
readonly VITE_API_BASE_URL: string
|
||
|
|
}
|