打包项目之后,打开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,
});

Logo

前往低代码交流专区

更多推荐