.output
Nuxt 在构建生产环境应用时会创建 .output/ 目录。
应该将此目录添加到你的
.gitignore
文件中,以避免将构建输出推送到你的存储库。使用此目录将你的 Nuxt 应用部署到生产环境。
¥Use this directory to deploy your Nuxt application to production.
你不应修改其中的任何文件,因为运行
nuxt build
时整个目录都会被重新创建。¥You should not touch any files inside since the whole directory will be re-created when running nuxt build
.