What problem does it solve?
This Skill prevents common Nuxt 4 mistakes by guiding you to the correct app directory structure, data-fetching patterns, and server route setup so your project behaves reliably across SSR, hydration, and deployment.
Core Features & Use Cases
- Nuxt 4 structure & routing: Use the
app/ directory layout for pages/components/composables and file-based routing without breaking Nuxt’s auto-imports.
- Data fetching without token-burning rework: Choose between
useFetch, useAsyncData, and $fetch correctly to avoid double-fetch and hydration issues.
- Nitro server routes & runtime config: Implement
server/api/* handlers with h3 and useStorage, and configure runtimeConfig and routeRules safely for the target deployment.
Quick Start
Use the nuxt skill to generate a Nuxt 4 app scaffold that places pages under app/, fetches data with useFetch or useAsyncData correctly, and exposes a typed server API route under server/api with method suffixes.