vite引入dragula报错:global is not defined

71 阅读1分钟

错误来源:

vite在引入dragula的时候,报错:

global is not defined at node_modules/custom-event/index.js (dragula.js

解决方法:

// index.html 
<html> 
... 
<body> 
  <script> 
     global = globalThis 
  </script> 
</body>

</html>

原文链接:blog.csdn.net/Adoro/artic…