@nuxt/docs-nightly 4.0.0-29183600.b517c419 → 4.0.0-29183859.14dd686b

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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nuxt/docs-nightly",
3
- "version": "4.0.0-29183600.b517c419",
3
+ "version": "4.0.0-29183859.14dd686b",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/nuxt/nuxt.git",