Soviut
Soviut
Also worth noting, there is a Buffer available in workers but it needs to be imported ```ts import { Buffer } from 'node:buffer' ``` https://developers.cloudflare.com/workers/runtime-apis/nodejs/buffer/
That's strange that it generated `Api.ts` when you used the `--modular` flag. Since it should have generated a separate file for each resource; that's what it does for me. For...
This would be nice for applying `meta: { requiresAuth: true }` to a parent route. Currently, I'm having to use `definePage` on every child page.
I also hit this issue. The move event should check for the existence of `event.originalEvent` and get its touches from there if it exists.
We got hit by an ETag issue where every other request would fail to intercept. This was made even more difficult to diagnose because of the `Disable Cache` checkbox being...
To clarify @acidmeat define a class-level variable for your client and new it outside of the callback. ```csharp class MyForm { NotificationClient notificationClient; public MyForm { notificationClient = new NotificationClient();...
@posva I suppose it doesn't matter that I'm not using SSR?
> I'm not using SSR and I need to get rid of this warning. Please fix this. Demanding a maintainer fix something like this is not a good way to...
I'm guessing but your `moved` function has some very weird syntax. You're making a copy of the array with slice but immediately overwriting it, trying to splice it, then return...