fix: 修改get_host_url

This commit is contained in:
caoqianming 2024-06-17 14:35:32 +08:00
parent 34835be268
commit fbc5573703
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ function get_api_url(){
function get_host_url(){ function get_host_url(){
if(process.env.NODE_ENV === 'development'){ if(process.env.NODE_ENV === 'development'){
return process.env.VUE_APP_API_BASEURL return process.env.VUE_APP_BASEURL
} }
return 'http://' + window.location.host return 'http://' + window.location.host
} }