.nuxt

Nuxt 在开发过程中使用 .nuxt/ 目录生成 Vue 应用。
此目录应添加到你的 .gitignore 文件中,以避免将开发构建输出推送到你的代码库。

如果你想了解更多关于 Nuxt 基于你的目录结构生成的文件的信息,这个目录会很有用。

¥This directory is interesting if you want to learn more about the files Nuxt generates based on your directory structure.

Nuxt 还为模块提供了虚拟文件系统 (VFS),以便将模板添加到此目录,而无需将其写入磁盘。

¥Nuxt also provides a Virtual File System (VFS) for modules to add templates to this directory without writing them to disk.

你可以通过在开发模式下打开 Nuxt 开发者工具 并导航到“虚拟文件”选项卡来浏览生成的文件。

¥You can explore the generated files by opening the Nuxt DevTools in development mode and navigating to the Virtual Files tab.

你不应修改其中的任何文件,因为运行 nuxt dev 时整个目录都会被重新创建。¥You should not touch any files inside since the whole directory will be re-created when running nuxt dev.