Gerben Mulder

Results 18 comments of Gerben Mulder

I can hook into the request and add things to the context. The problem I'm having is that the `close` hook never happens.

Would love to see platform agnostic support! Maybe something like this could help a lot https://github.com/unjs/unenv

Getting this error only on certain pages... It's very inconsistent. I have no indication of what part of my code might cause it because on my machine I do not...

Do you already have something in mind? I can have a go at this as I have good use for it. An easy way is to just have two types...

What is the workaround? The server utilities have correct typings but the `useUserSession` composable does not.

@divine I'd argue that Nuxt UI adopting Radix Vue will make Radix Vue even better and in turn Nuxt UI, benefitting both. Also, most issues are feature requests and not...

Also my view on the naming of "notifications". There is also the browser's [notification](https://developer.mozilla.org/en-US/docs/Web/API/notification) for desktop/mobile notifications. Some could argue that this would be confusing as well. VueUse named it...

I was just working on a way to preview the image before you upload it. Maybe you can add this to the `useUpload` composable? Or is the `pathname` the location...

I'm not sure how this works with pages? Currently I have a separate worker project which is the queue consumer. Does pages support this or is it only pull based...

@valtlfelipe I use this util to publish to a Queue (based on other nuxthub utils) ```ts import type { Queue } from '@cloudflare/workers-types/experimental'; interface Message { orderId: string; lang: string;...