How a single inline await in our Vue composable was silently serializing all data fetching during server-side rendering, and how onServerPrefetch fixed it with zero architectural changes.
We discovered that our image optimization pipeline was generating perfect srcset values that the browser completely ignored. The fix was a single HTML attribute we had been treating as optional for years.
While optimizing a Nuxt 3 project, I discovered excessive automatic prefetching was driving up Vercel bandwidth. Disabling prefetch globally brought costs and network overhead way down.
I inherited a Nuxt 3 project that was costing over $50/day in Vercel bandwidth. The culprit? A single wildcard import pulling in the entire Font Awesome library. Here’s how I found and fixed it.