前端项目实战肆佰零玖react-admin和material ui-跨域方案http-proxy-middleware
const { createProxyMiddleware } = require('http-proxy-middleware');
module.exports = (app) => {
app.use(
createProxyMiddleware('/postgrest', {
target: 'http://localhost:4000',
changeOrigin: true,
pathRewrite: {
'^/postgrest': ''
}
})
)
}

浙公网安备 33010602011771号