From ba384ff030a7a4d7fc2e89150b86fe15f0960358 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=81=AB=E3=83=BC=E5=85=84=E3=81=95=E3=82=93=20/=20Kaito?= =?UTF-8?q?=20Tsutsumi?= <2237k.drumath@gmail.com> Date: Tue, 3 Jan 2023 03:00:03 +0900 Subject: [PATCH] docs: fix `layouts` typo in nuxtignore page (#9893) --- .../1.docs/2.guide/2.directory-structure/2.nuxtignore.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/1.docs/2.guide/2.directory-structure/2.nuxtignore.md b/docs/content/1.docs/2.guide/2.directory-structure/2.nuxtignore.md index d6e719b3f9..67763da971 100644 --- a/docs/content/1.docs/2.guide/2.directory-structure/2.nuxtignore.md +++ b/docs/content/1.docs/2.guide/2.directory-structure/2.nuxtignore.md @@ -7,7 +7,7 @@ description: The .nuxtignore file lets Nuxt ignore files in your project’s roo # Nuxt Ignore File -The `.nuxtignore` file lets Nuxt ignore `layout`, `pages`, `components`, `composables` and `middleware` files in your project’s root directory (`rootDir`) during the build phase. The `.nuxtignore` file is subject to the same specification as `.gitignore` and `.eslintignore` files, in which each line is a glob pattern indicating which files should be ignored. +The `.nuxtignore` file lets Nuxt ignore `layouts`, `pages`, `components`, `composables` and `middleware` files in your project’s root directory (`rootDir`) during the build phase. The `.nuxtignore` file is subject to the same specification as `.gitignore` and `.eslintignore` files, in which each line is a glob pattern indicating which files should be ignored. **Note**: You can also configure [`ignoreOptions`](/docs/guide/directory-structure/nuxt.config#ignoreoptions), [`ignorePrefix`](/docs/guide/directory-structure/nuxt.config#ignoreprefix) and [`ignore`](/docs/guide/directory-structure/nuxt.config#ignore) in your `nuxt.config` file.