I got a React environment and the app works when in Chrome but not in Safari or Brave.
The console error Brave gives is this:
Uncaught ReferenceError: globalThis is not defined
at Object.<anonymous> (byte-utils.js:5)
And the line 5 in reference is this:
const useBuffer = globalThis.process && !globalThis.process.browser && globalThis.Buffer && typeof globalThis.Buffer.isBuffer === 'function';
Any ideas?