@nuxt/docs-nightly 4.0.0-29183827.81b83c29 → 4.0.0-29187291.758a1773
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -17,18 +17,18 @@ You can also configure [`ignoreOptions`](/docs/api/nuxt-config#ignoreoptions), [
|
|
|
17
17
|
|
|
18
18
|
```bash [.nuxtignore]
|
|
19
19
|
# ignore layout foo.vue
|
|
20
|
-
layouts/foo.vue
|
|
20
|
+
app/layouts/foo.vue
|
|
21
21
|
# ignore layout files whose name ends with -ignore.vue
|
|
22
|
-
layouts/*-ignore.vue
|
|
22
|
+
app/layouts/*-ignore.vue
|
|
23
23
|
|
|
24
24
|
# ignore page bar.vue
|
|
25
|
-
pages/bar.vue
|
|
25
|
+
app/pages/bar.vue
|
|
26
26
|
# ignore page inside ignore folder
|
|
27
|
-
pages/ignore/*.vue
|
|
27
|
+
app/pages/ignore/*.vue
|
|
28
28
|
|
|
29
29
|
# ignore route middleware files under foo folder except foo/bar.js
|
|
30
|
-
middleware/foo/*.js
|
|
31
|
-
!middleware/foo/bar.js
|
|
30
|
+
app/middleware/foo/*.js
|
|
31
|
+
!app/middleware/foo/bar.js
|
|
32
32
|
```
|
|
33
33
|
|
|
34
34
|
::read-more{icon="i-simple-icons-git" title="the git documentation" to="https://git-scm.com/docs/gitignore" target="_blank"}
|