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.
 
 
 
 
 
 

17 lines
654 B

# 执法端开发环境
VITE_PORT = 12002
# axios baseURL:仅代理前缀,业务路径在接口里写 /app-enf/...
# 现场执法 -> /api/app-enf/... 经 proxy 去掉 /api 后转发到后端
VITE_BASE_URL = '/api'
# 非现场执法 -> /nosapi/app-enf/... 经 proxy 去掉 /nosapi 后转发
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.12:28080'
# 附件/图片等静态资源前缀(与现场执法同源)
VITE_FILE_URL = '/api'
VITE_DEFAULT_LOGIN = '/enforcement/login'
VITE_APP_ENV = 'dev'