欢迎关注前端小讴的 github,阅读更多原创技术文章
问题一:assetsPublicPath 配置错误
解决办法:打开 config/index.js 文件
build:{
// assetsPublicPath: '/'
assetsPublicPath: './'
}
问题二:路由 history 模式配置有误
解决办法:关闭路由 historym 模式
export default new Router({
// mode: 'history', // require service support
scrollBehavior: () => ({y: 0}),
routes: constantRouterMap
})