歡迎關注前端小謳的github,閱讀更多原創技術文章
問題一:assetsPublicPath配置錯誤
解決辦法:打開config/index.js文件前端
build:{ // assetsPublicPath: '/' assetsPublicPath: './' }
問題二:路由history模式配置有誤
解決辦法:關閉路由historym模式git
export default new Router({ // mode: 'history', // require service support scrollBehavior: () => ({ y: 0 }), routes: constantRouterMap })