webpack.devServer配置proxy实现开发时跨域请求

proxy: {
    'react/api': {
        target: 'https://www.abc.com',
        secure: false, // http请求https,这里需设置成false,
        pathRewrite: {
            'header.json': 'demo.json'
        },
        changeOrigin: true // 一些服务器防止爬虫会设置origin,
    }
}

 

你可能感兴趣的:(webpack)