Complete the code to define the main folder where pages are stored in a Nuxt project.
The main folder for pages in Nuxt is called '[1]'.
In Nuxt, the pages folder holds all the page components that define routes automatically.
Complete the code to specify the folder where reusable UI parts are stored in Nuxt.
Reusable UI parts like buttons or headers go inside the '[1]' folder.
The components folder contains reusable Vue components used across pages.
Fix the error in the folder name that holds static files like images or favicon in Nuxt.
Static files are placed in the '[1]' folder.
The correct folder name for static files in Nuxt is static. It serves files directly without processing.
Fill both blanks to complete the Nuxt folder names for global styles and layout templates.
Global CSS files go in the '[1]' folder, and layout templates go in the '[2]' folder.
Global styles are stored in assets, while reusable page structures are in layouts.
Fill all three blanks to complete the Nuxt folder names for plugins, middleware, and server API routes.
Custom plugins go in '[1]', middleware files go in '[2]', and server API routes go in '[3]'.
Plugins extend app features, middleware runs before pages, and server folder holds backend API routes in Nuxt 3.