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.
8 lines
314 B
8 lines
314 B
# 企业端开发环境
|
|
VITE_PORT = 12001
|
|
# 直接访问后端端口,不通过代理
|
|
VITE_BASE_URL = 'http://localhost:8080'
|
|
# 附件/图片等静态资源的后端地址(直接访问,不走 /api 代理)
|
|
VITE_FILE_URL = 'http://localhost:8080'
|
|
VITE_DEFAULT_LOGIN = '/enterprise/login'
|
|
VITE_APP_ENV = 'dev'
|
|
|