You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
# 开发环境
|
|
NODE_ENV='dev'
|
|
|
|
# 为了防止意外地将一些环境变量泄漏到客户端,只有以 VITE_ 为前缀的变量才会暴露给经过 vite 处理的代码。
|
|
# ts中通过`import.meta.env.VITE_APP_BASE_API`取值
|
|
VITE_APP_PORT = 5173
|
|
VITE_APP_BASE_API = '/dev-api'
|
|
|
|
# 后端服务地址
|
|
VITE_APP_SERVICE_API = 'http://localhost:888'
|
|
|