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.
20 lines
630 B
20 lines
630 B
# 资源公共路径,需要以 /开头和结尾
|
|
VITE_PUBLIC_PATH=/
|
|
# 是否打开mock
|
|
VITE_USE_MOCK = true
|
|
# 接口地址
|
|
# 如果没有跨域问题,直接在这里配置即可
|
|
#后台接口全路径地址(必填)
|
|
VITE_GLOB_DOMAIN_URL=http://localhost:8080/guoyan
|
|
|
|
#后台接口父地址(必填)
|
|
VITE_GLOB_API_URL=/guoyan
|
|
|
|
# 文件上传接口
|
|
VITE_GLOB_UPLOAD_URL=/api/auth/file/upload
|
|
|
|
# 接口地址前缀,有些系统所有接口地址都有前缀,可以在这里统一加,方便切换
|
|
VITE_GLOB_API_URL_PREFIX=
|
|
|
|
# 项目路径,用于代码生成
|
|
VITE_PROJECT_PATH=/Users/tengchong/workspaces/github/easy-vben-admin
|
|
|