javascript - webpack dev server 报错404,请问怎么解决
漂亮男人
漂亮男人 2017-05-18 11:01:53
0
3
520

webpack dev server配置反向代理的时候总是报错404,请问怎么解决?

错误日志:GET http://localhost:8080/mzabris... 404 (Not Found)

配置文件:

devServer: {
      inline: true,
      noInfo: true,
      port: 8080,
      proxy: {
        '/mzabriskie': {
          target: 'https://github.com',
          changeOrigin: true
        }
      }
  },

接口代码:

    this.$http.get('/mzabriskie/axios').then((response) => {
      console.log(response)
    }).catch((error) => {
      console.log(error)
    })
漂亮男人
漂亮男人

全部回复(3)
phpcn_u1582

配置好像没毛病,主要是好像写错文件了....

刘奇

你代码完全没问题……配置修改后重启了webpack了吗

滿天的星座

加一行

proxy: {
        '/mzabriskie': {
          target: 'https://github.com',
          changeOrigin: true,
          '/mzabriskie': '/mzabriskie'

        }
      }

然后重启webpack

热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板