You can use the minified JS if that's the case. There are ways to define Buffer in different environments though. For example in Angular adding the following to the polyfills.ts file would do the trick.
global.Buffer = global.Buffer || require('buffer').Buffer;
I've added this to quasar.conf:
boot: ["i18n", "axios", "buffer"],And created a file
buffer.jsin thebootfolder:import { boot } from "quasar/wrappers" import { Buffer } from "buffer" export default boot(({ app }) => { app.config.globalProperties.$Buffer = Buffer })and
hive-txstill throws this error:Nothing is ever as easy as
yarn add ...with javascript or so it seems to me.