前端专家梦

导航

webpack4+Vue-cli3打包后index.html空白,报We’re sorry but template doesn’t work properly without JavaScript enabled. Please enable it to continue问题解决

1、问题代码:vue.config.js中publicPath: './', (相对路径)且配置了pages和路由是history模式,

// vue.config.js
module.exports = {
    publicPath: './',
    pages: {
        index: {
            entry: ["node_modules/core-js", "src/main.ts"],
        },
    },
    devServer: {
        ...
    },
};

2、问题原因:

     相对路径的 publicPath 有一些使用上的限制。在以下情况下,应当避免使用相对 publicPath:

  • 当使用基于 HTML5 history.pushState 的路由时;

  • 当使用 pages 选项构建多页面应用时。

3、修改方案:

删除vue.config.js的page配置,修改路由模式为hash

 

posted on 2021-05-07 10:13  前端女汉子一枚  阅读(2523)  评论(0编辑  收藏  举报