2021-10-11 12:57:54 +00:00
---
2022-10-06 09:15:30 +00:00
title: ".nuxt"
description: "Nuxt uses the .nuxt/ directory in development to generate your Vue application."
2022-11-21 15:51:39 +00:00
head.title: ".nuxt/"
2023-10-18 10:59:43 +00:00
navigation.icon: i-ph-folder-duotone
2021-10-11 12:57:54 +00:00
---
2023-10-18 10:59:43 +00:00
::callout{icon="i-ph-warning-duotone" color="amber"}
This directory should be added to your [`.gitignore` ](/docs/guide/directory-structure/gitignore ) file to avoid pushing the dev build output to your repository.
2021-10-11 12:57:54 +00:00
::
This directory is interesting if you want to learn more about the files Nuxt generates based on your directory structure.
2023-01-26 11:57:44 +00:00
2023-10-18 10:59:43 +00:00
Nuxt also provides a Virtual File System (VFS) for modules to add templates to this directory without writing them to disk.
2023-01-26 11:57:44 +00:00
2023-10-18 10:59:43 +00:00
You can explore the generated files by opening the [Nuxt DevTools ](https://devtools.nuxt.com ) in development mode and navigating to the **Virtual Files** tab.
::callout{icon="i-ph-warning-duotone" color="amber"}
You should not touch any files inside since the whole directory will be re-created when running [`nuxt dev` ](/docs/api/commands/dev ).
::