Troubleshooting
This document provides troubleshooting tips for common developer support questions.
Why is my app failing with a "Buffer is not found" error?
If you run into issues with Buffer
and polyfills
, try this solution:
Install the buffer dependency
Bash
npm i buffer
Create a new file polyfills.js
in the root of your project
TypeScript
import { Buffer } from "buffer";
window.Buffer = window.Buffer ?? Buffer;
On the first line of your main file, import polyfills
- ReactJS:
index.js
orindex.tsx
- VueJS:
main.js
- NuxtJS:
app.vue
TypeScript
// It has to be on the first line of the file for it to work
import "./polyfills";