You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Before an error occurs in the Safari worker, an error crashes in esbuild. But this is not related to safari, rather to error handling.
Error: Can't find variable: fs
The problem in browser.js:
// func wasmWrite(fd uintptr, p unsafe.Pointer, n int32)"runtime.wasmWrite": (sp)=>{sp>>>=0;constfd=getInt64(sp+8);constp=getInt64(sp+16);constn=this.mem.getInt32(sp+24,true);// Look here, there is no global variable fs, it should be global.fs.writeSync(...)fs.writeSync(fd,newUint8Array(this._inst.exports.mem.buffer,p,n));},
The text was updated successfully, but these errors were encountered:
Before an error occurs in the Safari worker, an error crashes in esbuild. But this is not related to safari, rather to error handling.
Error:
Can't find variable: fs
The problem in
browser.js
:The text was updated successfully, but these errors were encountered: