Vue-Proxyエージェントの使い方


Vue-Proxyエージェントの使い方
目的:クロスドメインの解決
ターゲットファイルアドレス:vue-cliで生成されたconfig/index.js
dev: {
    //           : /test/where
    
    assetsSubDirectory: 'static',
    assetsPublicPath: '/', 
    proxyTable: {
      '/proxyApi': {
        target: 'http://xxxx.com', //            
        changeOrigin: true, // true    
        pathRewrite: {
          '^/proxyApi': '/proxyApi' //   api    => /proxyApi/test/where
        }
      }
    }
最後にもう一度run devを覚えてください。