美文网首页
2022-03-03 vite 关于 global is not

2022-03-03 vite 关于 global is not

作者: 追寻1989 | 来源:发表于2022-03-03 16:37 被阅读0次

因为 Vite 是 ESM 机制,有些包内部使用了 node 的 global 对象,解决此问题可以通过自建 pollfill,然后在 main.ts 顶部引入,不是最优解

// polyfills
if (typeof (window as any).global === 'undefined') {
  ;(window as any).global = window
}

// main.ts
import './polyfills' // 注意要在createApp 的前面
import { createApp } from 'vue'

相关文章

网友评论

      本文标题:2022-03-03 vite 关于 global is not

      本文链接:https://www.haomeiwen.com/subject/pekurrtx.html