craco.config.js
文件
module.exports = {
// 代理接口
devServer: {
proxy: {
'/api': {
target: 'https://api.cn',
changeOrigin: true,
pathRewrite: {
"^/api": ''
}
}
},
},
};
axios
文件
axios.defaults.baseURL = "/api";