Vue router on page refresh gets 404

后端 未结 4 1366
慢半拍i
慢半拍i 2021-01-28 02:49

I am using Vue router with history mode. On button click on the current page I route it to next page. On second page when i reload i get a 404. Is there a way to handle this in

4条回答
  •  情深已故
    2021-01-28 03:53

    if any one of is facing the issue even after trying above solution, please find below method. If you have vue.config.js which has

    module.exports = {
      publicPath: process.env.PUBLIC_URL || "", // <-- this is wrong
      ...
    };
    

    either remove the vue.config.js or try removing the publicPath from the exports object.

    Also you can try below method if you dont want to remove the publicPath

    module.exports = {
      publicPath: process.env.PUBLIC_URL || "/", // <-- this is correct now (and default)
      transpileDependencies: ["vuetify"],
    };
    

提交回复
热议问题