vue代理

作者: 周海伦 | 来源:发表于2020-11-27 16:33 被阅读0次
    devServer: {
        /* 自动打开浏览器 */
        open: true,
        /* 设置为0.0.0.0则所有的地址均能访问 */
        host: '0.0.0.0',
        /* 端口号 */
        port: 80,
        /* 是否启用https */
        https: false,
        /* 是否启用https */
        hotOnly: false,
        // 错误、警告在页面弹出
        overlay: {
          warnings: false,
          errors: false
        },
        /* 使用代理 */
        proxy: {
          '/appmanage': {
            /* 目标代理服务器地址 */
            // 开发地址
            target: 'http://127.0.0.1:8091',
            /* 允许跨域 */
            changeOrigin: true,
            pathRewrite: { '^/appmanage': '' }
          },
          '/ocr': {
            /* 目标代理服务器地址 */
            // 开发地址
            target: 'http://127.0.0.1:8085',
            /* 允许跨域 */
            changeOrigin: true,
            pathRewrite: { '^/ocr': '' }
          },
        }
    

    如果遇到接口是/appmanage/ocr,找到重复的代理字段,就会报错

    相关文章

      网友评论

          本文标题:vue代理

          本文链接:https://www.haomeiwen.com/subject/mswxwktx.html