我有一个 React 环境,该应用程序在 Chrome 中运行,但在 Safari 或 Brave 中不运行。
Brave 给出的控制台错误是这样的:
Uncaught ReferenceError: globalThis is not defined
at Object.<anonymous> (byte-utils.js:5)
参考中的第 5 行是这样的:
const useBuffer = globalThis.process && !globalThis.process.browser && globalThis.Buffer && typeof globalThis.Buffer.isBuffer === 'function';
有任何想法吗?