vue项目打包之后浏览器页面空白,加载不出页面
vue项目打包之后浏览器页面空白,加载不出页面
·
打包项目之后,打开dist文件里边的index.html页面,浏览器空白屏,页面加载不出来;
查看配置页面问题,后来发现在router路由文件夹index.js里边设置了mode的history状态,去掉url中的#的设置;
export default new Router({
mode: “history”, // 去掉url中的#
scrollBehavior: () => ({ y: 0 }),
routes: constantRoutes,
});
去掉mode的配置,默认为hash就可以了,修改为如下:
export default new Router({
scrollBehavior: () => ({ y: 0 }),
routes: constantRoutes,
});
更多推荐
已为社区贡献1条内容
所有评论(0)