import GlobalConfig from '../src/utils/env/dev';
const proxy = {
'/api': {
'target': GlobalConfig["PROXY_SERVER"],
'changeOrigin': true,
withCredentials: true,
secure: false,
cookieDomainRewrite: 'localhost',
},
};
export default proxy;