vue webpack之vue-router 使用history模式报错Cannot GET /xxx

报错原因:找不到页面资源
解决办法:在webpack.config.js中的devServer内添加属性historyApiFallback
代码如下

historyApiFallback: {
     
    index: '/index.html'//该路径为打包后的首页路径及dist目录下的index.html页面
  },

你可能感兴趣的:(个人笔记,vue,webpack踩过的坑)