报错1:vue-cli项目本地npm run dev启动后,chrome打开是空白页
1
|
<
strong
> 解决方案</
strong
>:将config下的index.js中的assetsPublicPath路径都设置为‘/’绝对路径
|
报错2:打包后想要在本地file(直接打开index.html)中打开,但是打开是空白页
1
|
<
strong
> 解决方案</
strong
>:将config下的index.js中的assetsPublicPath路径都设置为‘./’相对路径
|
报错3:打包后丢到服务器中,打开是空白页
1
|
<
strong
> 解决方案</
strong
>:将config下的index.js中的assetsPublicPath路径都设置为‘./’相对路径
|
报错4:打包后在浏览器中打开,报错ERROR in xxx.js from UglifyJs
这种错误是由于部分或全部es6语法转es5失败了,需要安装并在webpack中配置babel-loader,具体请参考此解决方案:https://segmentfault.com/a/1190000011212544
报错5:打包后打开页面控制台报错,Uncaught RangeError: Maximum call stack size exceeded
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
router.beforeEach((to, from, next) => {
var
getCookie = common.getCookie(
'userInfo'
)
if
(!getCookie) {
console.log(to.path)
if
(to.path ===
'/login'
) {
next()
}
else
{
next(
'/login'
)
}
}
else
{
next()
}
})
|
1
2
3
4
5
6
7
8
9
10
11
12
13
|
if
(options.extract) {
return
ExtractTextPlugin.extract({
use: loaders,
fallback:
'vue-style-loader'
,
publicPath:
'../../'
})
}
else
{
return
[
'vue-style-loader'
].concat(loaders)
}
}
|
转载自:https://www.cnblogs.com/hjvsdr/p/8064880.html
|