vite打包出现global is not defined和Buffer is not defined的解决方法
安装buffer
yarn add buffer
在main.ts里
import * as buffer from "buffer";
if (typeof (window as any).global === "undefined") {
(window as any).global = window;
}
if (typeof (window as any).Buffer === "undefined") {
(window as any).Buffer = buffer.Buffer;
}