查看打包后页面访问路径是否正确
解决办法:
创建 vue.config.js 文件 添加一下内容,重新打包就好了。
//vue.config.js 文件
module.exports = {
publicPath: './',
}
打包后页面没有报错,但没有内容
解决办法:
找到 router 文件夹 (路由文件夹) 把
mode: 'history'
注释掉 ,重新打包就好了。
const router = new VueRouter({
// mode: 'history',
routes
})