vue.config.js配置文件

module.exports = {
  devServer: {
    host: '0.0.0.0',
    port: 8080,//本地项目端口
    open: true,//项目启动后浏览器自动打开
    proxy: {
      // 匹配带有 '/one/' 的接口url
      '/one': {
        target: `http://192.168.1.23:8083`,
        changeOrigin: true,// 是否跨域
        pathRewrite: {
            // 将url中的 '/one' 重写为 ''
            '^/one': ''
        }
      },
      '/two': {
        target: `http://192.168.1.23:8084`,
        changeOrigin: true,
        pathRewrite: {
            // 将 '/two' 重写为 '/two'
            '^/two': '/two'
        }
      },
    },
    disableHostCheck: true
  }
}
Logo

前往低代码交流专区

更多推荐