...

/

Nuxt Project Structure

Nuxt Project Structure

Discover the file and folder structure provided with a Nuxt project.

Nuxt project structure

A Nuxt 3 project has a relatively simple structure to begin with:

<template>
  <div>
    <NuxtWelcome />
  </div>
</template>
Simple Nuxt starter project with welcome message

This is the default structure when creating a new project with create-nuxt-app. The simple approach allows us to organize the project structure according to our preferences using directories and folders. ...