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.
13 lines
495 B
13 lines
495 B
# 企业端开发环境
|
|
VITE_PORT = 12001
|
|
# 直接访问后端端口,不通过代理
|
|
VITE_BASE_URL = '/api'
|
|
# 附件/图片等静态资源的后端地址(直接访问,不走 /api 代理)
|
|
VITE_FILE_URL = '/api/ent-ep'
|
|
VITE_DEFAULT_LOGIN = '/enterprise/login'
|
|
VITE_APP_ENV = 'dev'
|
|
|
|
VITE_NOS_BASE_URL = '/nosapi'
|
|
# 仅 dev server 代理目标(生产由 nginx 转发,不读这两项)
|
|
VITE_PROXY_TARGET = 'http://139.186.148.21:8080'
|
|
VITE_NOS_PROXY_TARGET = 'http://192.168.1.13:28080'
|
|
|