phin
phin copied to clipboard
ReferenceError: Buffer is not defined
I think it would be helpful for people who decided to use it on frontend or something else that includes browser... It happens if you use webpack5+
The solution is that you need to add these lines to your webpack config
module.exports = {
...
node: {
process: true,
Buffer: true
}
}