Jesse Greer

Results 7 comments of Jesse Greer

I fixed this issue by using the package.json for my prettier config, for anyone looking for alternative solutions.

> > I fixed this issue by using the package.json for my prettier config, for anyone looking for alternative solutions. > > > > How is that done? Sorry if...

I had similar issue with and it turns out iconify doesnt allow text bc of how they render differently based on the OS. https://iconify.design/docs/articles/cleaning-up-icons/validate.html#text-and-fonts

you have to use your own solution, here are a few ideas: - add rate limiting middleware on your server - use proxies (look at this [example](https://github.com/LuanRT/YouTube.js/tree/main/examples/browser) folder) - use...

Yes you can proxy anything. Go to the link I provided to see an example. Denouncing could be just a simple setTimeout to add some delay to each request, but...

Can now use Bun Shell for this also. This is running through my vpn (mullvad) via [gluetun](https://github.com/qdm12/gluetun) as the proxy server. ```ts import { $ } from 'bun' function proxyRequest(requestURL:...

To add onto @cworld1 solution, you can add this environment variable to your vercel project to skip the build cache on all builds: ```sh VERCEL_FORCE_NO_BUILD_CACHE=1 ```