I am deploying a small open source "seed poem" editor but have been running into a issue, Buffer or Stream seems to fail after `npm run build` but it runs fine in development mode. Anyone run into similar problems?
→ github.com/mattdesl/seed-
Conversation
Yes! Vite is highly opinionated in that it doesn’t bundle any Node.js globals on build.
You can probably refactor to use browser native ArrayBuffers and ReadableStreams though if you want to continue using Vite. lmk if you need a code example, had to do this recently myself

