mrkaashee
mrkaashee
This PR updates outdated Nitro documentation links from `nitro.unjs.io` to the new domain `nitro.build`
### Hi Nuxt Hub team, I'm working on implementing real-time order updates using nuxt-hub in my Nuxt-based e-commerce website. I've successfully established a WebSocket connection within my routes, following the...
When using `getUserSession(event)` inside a `cachedEventHandler`, the returned session object only includes the `id`: ```ts // inside cachedEventHandler const session = await getUserSession(event); console.log(session); // Output: { id: '99ca50c6-297f-429c-8f53-5903d6ecd74b' }...