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='development'
|
|
|
|
# 应用端口
|
|
VITE_APP_PORT = 3000
|
|
|
|
# 代理前缀
|
|
VITE_APP_BASE_API = '/dev-api'
|
|
|
|
# 线上接口地址
|
|
#VITE_APP_API_URL = http://vapi.youlai.tech
|
|
# 开发接口地址
|
|
VITE_APP_API_URL = http://localhost:8989
|
|
|
|
# 是否启用 Mock 服务
|
|
VITE_MOCK_DEV_SERVER = false
|
|
|