MrJackdaw
MrJackdaw
> I'm not familiar with vite, but you will need to add two polyfills for node packages in order for this package to work: `buffer` and `path-browserify`. You can see...
> Knowing nothing about Vite either, wouldn't you have to include the imported `Buffer` in your `defineConfig`? > > ```js > import { Buffer } from 'buffer'; > > export...
@jdtzmn Thanks for the suggestion. I tried your suggestion (and a few variations) -- and they ultimately confirmed my suspicion: "buffer" is getting defined, but isn't getting consumed (possibly due...
> Hey all, > > Generally this would be fixed by using a polyfill for the `node.js Buffer` implementation, this can be done the following way: > > `npm i...
Just writing to help others who may encounter this issue: ```typescript const CustomInput = forwardRef(({ value, onClick }, ref) => { ``` **TLDR:** define types for the arguments (`{ value,...