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.
21 lines
608 B
21 lines
608 B
8 months ago
|
# 资源公共路径,需要以 /开头和结尾
|
||
|
VITE_PUBLIC_PATH=/
|
||
|
|
||
|
# 打包是否输出gz|br文件
|
||
|
# 可选: gzip | brotli | none
|
||
|
# 也可以有多个, 例如 ‘gzip’|'brotli',这样会同时生成 .gz和.br文件
|
||
|
VITE_BUILD_COMPRESS='none'
|
||
|
|
||
|
# 接口地址
|
||
|
#后台接口全路径地址(必填)
|
||
|
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=
|
||
|
|