mirror of
https://github.com/qier222/YesPlayMusic.git
synced 2025-02-20 04:40:45 +08:00
feat(utils/request): override realIP param with env var (#1514)
This commit is contained in:
parent
af0a997609
commit
16b525915e
|
@ -1,6 +1,6 @@
|
|||
import axios from 'axios';
|
||||
import { getCookie, doLogout } from '@/utils/auth';
|
||||
import router from '@/router';
|
||||
import { doLogout, getCookie } from '@/utils/auth';
|
||||
import axios from 'axios';
|
||||
|
||||
let baseURL = '';
|
||||
// Web 和 Electron 跑在不同端口避免同时启动时冲突
|
||||
|
@ -34,6 +34,10 @@ service.interceptors.request.use(function (config) {
|
|||
config.params.realIP = '211.161.244.70';
|
||||
}
|
||||
|
||||
if (process.env.VUE_APP_REAL_IP) {
|
||||
config.params.realIP = process.env.VUE_APP_REAL_IP;
|
||||
}
|
||||
|
||||
const proxy = JSON.parse(localStorage.getItem('settings')).proxyConfig;
|
||||
if (['HTTP', 'HTTPS'].includes(proxy.protocol)) {
|
||||
config.params.proxy = `${proxy.protocol}://${proxy.server}:${proxy.port}`;
|
||||
|
|
Loading…
Reference in New Issue
Block a user