【Vue域名动态配置】

// 频繁更改域名动态配置
const apiUrlObj = {
    'localhost': 'https://api.shengchan.com/',//生产
    'http://192.168.xx.xx': 'http://ceshi.com/',//测试
    //'http://192.168.xx.xx': 'http://192.168.xx:xxxx/',//后端本地
};
const localUrl = `${location.protocol}//${location.hostname}`;
const getAPIURL = () => (apiUrlObj[localUrl] || 'https://api.shengchan.com/')
export default getAPIURL();

哪里需要哪里引入每次动态匹配对应域名

你可能感兴趣的:(vue.js,javascript,前端)