cra-template-doly
Version:
[![npm][npm]][npm-url] 
20 lines (19 loc) • 369 B
JavaScript
// 环境对应 .env-cmprc 中配置的 REACT_APP_ENV
module.exports = {
dev: {
'/api': {
target: 'https://example.com',
changeOrigin: true,
secure: false,
pathRewrite: { '^': '' }
}
},
test: {
'/api/': {
target: 'your test url',
changeOrigin: true,
secure: false,
pathRewrite: { '^': '' }
}
}
};