vite项目打包后在低版本google(测试66)浏览器,页面空白。globalThis is not defined

1,995 阅读1分钟

解决:vite项目打包后在低版本google(测试66)浏览器,页面空白。globalThis is not defined

搞了个小vite项目,磕磕碰碰的踩了不少坑,终于要发布上线发现自己的浏览器88版本的正常打开,但是同事的66版本报错,页面空白。 页面报错 :globalThis is not defined

参照:juejin.cn/post/702292… 在inde.html文件里面

`

<script>
  this.globalThis || (this.globalThis = this)
</script>

<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="http://mall.newbee.ltd/favicon.ico" />
<title>vue3-admin</title>
`

添加

<script>
  this.globalThis || (this.globalThis = this)
</script>

打包后完美解决