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
You might double-check that you're building the unmodified example. E.g., no updates to package.json.
When I wrote my own web app that uses vosk-browser, I wrote a different Microphone class that doesn't have the same dependencies. This allowed me to use the newer version of create-react-app/WebPack.
I tried using webpack and Vite and no success with adding polyfill
Added temp solution. If anyone finds a better way, please share window.process = { ...window.process, nextTick: (callback, ...args) => new Promise((resolve) => { setTimeout(() => { callback(...args); resolve(null); }, 0); }) };
when trying to run the react example i get an error from the _stream_readable process undefined .
function maybeReadMore(stream, state) { if (!state.readingMore) { state.readingMore = true; process.nextTick(maybeReadMore_, stream, state); } }
how can i fix this?
The text was updated successfully, but these errors were encountered: