请问setting.js文件里面的VUE_APP_WS_ADMIN_URL应该怎么填
const VUE_APP_API_URL = `服务器域名/adminapi`
//const VUE_APP_API_URL = process.env.VUE_APP_API_URL || `${location.origin}/api/admin`
const VUE_APP_WS_ADMIN_URL = process.env.VUE_APP_WS_ADMIN_URL || `ws:${location.hostname}`
const Setting = {
// 接口请求地址
apiBaseURL: VUE_APP_API_URL,
//socket连接
wsSocketUrl: VUE_APP_WS_ADMIN_URL,
// 路由模式,可选值为 history 或 hash
routerMode: 'history',
// 页面切换时,是否显示模拟的进度条
showProgressBar: true
}
export default Setting