Bug

Que

vite下使用了react-codemirror2

控制台报错global is not defined

Solution

在入口文件 index.html 中加入

<script>
  window.global = window;
</script>

Last updated

Was this helpful?