Daniel Roe

Results 2592 comments of Daniel Roe

Could you explain a bit more about what you're trying and what isn't working, perhaps with a reproduction? You can add data to `event.context` and this seems to meet your...

You can use `const event = useRequestEvent()` in `pages/index.vue` and write `event.context` there: ```vue if (import.meta.server) { const event = useRequestEvent() event.context.myData = { here: 'we go' } } ```

I think @antfu was working on a PR to avoid restarting/rebuilding Nuxt when rerunning tests. Also relevant: https://github.com/nuxt/framework/pull/4578.

I think `ipxStatic` provider options should inherit from `ipx`.

Checking, this is _very much_ not a minimal reproduction. Would you provide a reproduction without any modules - in fact, with no code that is not needed to reproduce? (If...

This is likely to be linked to Vue 3.5+. Can you reproduce on an earlier Nuxt with the latest Vue version?

this should now be resolved with https://github.com/unjs/c12/pull/243 🙏 if not, feel free to rebase/reopen this PR. thank you for your work on it here and also in the upstream pr...

can you provide an example repo that suffers these performance issues? I'll look into it 🙏