From the course: Learning Nuxt.js
Unlock the full course today
Join today to access over 24,500 courses taught by industry experts.
A look into .nuxt directory
From the course: Learning Nuxt.js
A look into .nuxt directory
- [Narrator] We have a Nuxt app up and running. If we navigate to the VS Code project, would see that we have some files and folders already generated for us. Let us go through each of this and see what they're used for. The first folder we have is the Nuxt Build Directory. The Nuxt Build Directory is dynamically created and heating by default. And this directory contains auto-generated files when you run the command "nuxt dev" or build artifacts when you run the command "nuxt build". We also have the Components Directory. Inside this directory, you would find all the reusable Vue components that you intend to use in your pages, your layouts or even reuse with other components. Next, we have the Node Modules Directory. This directory consists of all the dependencies that are used in your application. For example, we have "eslint" and "nuxtjs" as dependencies in this project. The Pages Directory, on…