nuxt-core

Explain Nuxt 4 core fundamentals including setup, routing, SEO, and error handling.

Updated Aug 23, 2026
One-click install
npx skills add https://github.com/asonnleitner/filipsbarbershop --skill nuxt-core
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: nuxt-core
Source: https://github.com/asonnleitner/filipsbarbershop/tree/main/.claude/skills/nuxt-core
Command: npx skills add https://github.com/asonnleitner/filipsbarbershop --skill nuxt-core

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) and assets (resource) components.

What problem does it solve?

This Skill provides a comprehensive guide to the core concepts and features of the Nuxt 4 framework, enabling developers to build robust and efficient web applications.

Core Features & Use Cases

  • Project Setup & Configuration: Learn how to initialize new Nuxt 4 projects and configure nuxt.config.ts for optimal performance and features.
  • Routing & Navigation: Understand file-based routing, dynamic routes, middleware, and navigation methods like navigateTo and NuxtLink.
  • SEO & Meta Tags: Implement effective SEO strategies using useHead and useSeoMeta for improved search engine visibility.
  • Error Handling: Gracefully manage application errors with error.vue and NuxtErrorBoundary.
  • Directory Structure: Comprehend the standard Nuxt 4 directory layout for organized development.

Quick Start

Use the nuxt-core skill to understand the directory structure of a Nuxt 4 project.

Frequently Asked Questions about nuxt-core

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I configure a Nuxt 4 project using nuxt.config.ts?

To configure a Nuxt 4 project, modify the nuxt.config.ts file to define settings like modules, runtime config, and app metadata, enabling you to control framework behavior and optimize application performance.

How does file-based routing work in Nuxt 4?

Nuxt 4 file-based routing automatically generates routes based on the directory structure inside the pages folder, supporting dynamic routes and middleware without manual route declaration.

What is the best way to implement SEO and meta tags in a Nuxt application?

The best way to implement SEO in a Nuxt application is by using the useHead and useSeoMeta composables to dynamically manage meta tags, title properties, and other SEO attributes for improved search engine visibility.

How do I handle application errors with error.vue and NuxtErrorBoundary in Nuxt 4?

Handle application errors by using the error.vue file for full-page error responses and wrapping specific UI sections with NuxtErrorBoundary to gracefully catch and display component-level errors without crashing the entire application.

What is the standard directory structure for a Nuxt 4 application?

The standard Nuxt 4 directory structure organizes code into dedicated folders like pages for routing, components for UI elements, and public for static assets, ensuring a structured and maintainable development workflow.

Can I use middleware and navigateTo for programmatic navigation in Nuxt 4?

Yes, you can use middleware to protect routes and the navigateTo function alongside the NuxtLink component for programmatic navigation and redirecting users within your Nuxt 4 application workflow.