webpack 解决 跨域问题

module.exports = {
  //本地服务器默认域名是http://localhost:8000
  devServer: {
   //代理
    proxy: {
      '/api': {
        target: 'http://localhost:3000',
        pathRewrite: {'^/api' : ''},
        changeOrigin: true,     // target是域名的话,需要这个参数,
        secure: false,          // 设置支持https协议的代理
      },
      
    }
  }
};
发布了21 篇原创文章 · 获赞 0 · 访问量 322

猜你喜欢

转载自blog.csdn.net/weixin_46337813/article/details/104631461