vue项目打包后本地访问index.html页面出现空白
程序员文章站
2022-06-13 15:51:29
...
vue打包之后,在本地访问index.html页面是一片空白,并且控制台会报错。
解决办法
- vue-cli2:首先找到config/index.js文件,将assetPublicPath的路径改为“./”
- vue-cli3:在项目的根目录下创建vue.config.js,并加入以下代码。
module.exports = {
publicPath: './',
assetsDir: 'static',
parallel: false
}
到了这步如果还是没有显示出来,那是因为你的路由模式的关系,你把你的路由模式改成“hash”就行了
vue中常用的路由模式 :
- hash(#):默认路由模式
- histroy(/)切换路由模式
切换路由模式:
export default new Router({
// 路由模式:hash(默认),history模式
mode: 'hash',
// 修改路由高亮样式,默认值为'router-link-active'
linkActiveClass: 'active'
//路由规则
routes:[
{
path:'/',
name:'index',
component:'Index'
}
],
})
上一篇: 决策树算法
推荐阅读
-
解决vue 项目使用webpack打包后,直接打开dist文件夹下的index.html页面空白的问题
-
vue-cli 3.0 打包后运行index.html 出现空白解决方案
-
vue-cli 3 4打包VUE项目出现空白页面解决方案
-
Vue打包后页面出现空白解决办法
-
vue项目打包后打开页面空白解决办法
-
vue项目打包后,页面一片空白,刷新时404,路由history模式,问题解决!
-
vue-cli 3.0 项目打包后本地打开index.html页面空白
-
VUE 打包后访问index.html空白页面问题和找不到静态文件问题
-
vue项目打包后本地访问index.html页面出现空白
-
Vue打包后页面出现空白解决办法