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.
31 lines
658 B
31 lines
658 B
# 只在开发模式中被载入
|
|
VITE_PORT = 8081
|
|
|
|
# 网站根目录
|
|
VITE_PUBLIC_PATH = /
|
|
|
|
# 是否开启mock
|
|
VITE_USE_MOCK = false
|
|
|
|
# 网站前缀
|
|
VITE_BASE_URL = /
|
|
|
|
# 是否删除console
|
|
VITE_DROP_CONSOLE = false
|
|
|
|
# 跨域代理,可以配置多个,请注意不要换行
|
|
#VITE_PROXY = [["/appApi","http://localhost:8001"],["/upload","http://localhost:8001/upload"]]
|
|
#VITE_PROXY=[["/api","http://10.10.10.56:9000"]]
|
|
|
|
# API 接口地址
|
|
VITE_GLOB_API_URL ="http://10.10.10.56:9000"
|
|
#VITE_GLOB_API_URL ="http://172.1.2.29:9000"
|
|
|
|
# 图片上传地址
|
|
VITE_GLOB_UPLOAD_URL=
|
|
|
|
# 图片前缀地址
|
|
VITE_GLOB_IMG_URL=
|
|
|
|
# 接口前缀
|
|
VITE_GLOB_API_URL_PREFIX =
|
|
|