@nuxt/docs 4.2.2 → 4.3.0

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.
Files changed (87) hide show
  1. package/1.getting-started/02.installation.md +2 -5
  2. package/1.getting-started/03.configuration.md +5 -5
  3. package/1.getting-started/06.styling.md +5 -1
  4. package/1.getting-started/07.routing.md +1 -1
  5. package/1.getting-started/08.seo-meta.md +4 -0
  6. package/1.getting-started/12.error-handling.md +12 -6
  7. package/1.getting-started/14.layers.md +47 -13
  8. package/1.getting-started/15.prerendering.md +6 -0
  9. package/1.getting-started/16.deployment.md +1 -0
  10. package/1.getting-started/17.testing.md +12 -2
  11. package/1.getting-started/18.upgrade.md +14 -1
  12. package/2.directory-structure/1.app/1.components.md +4 -0
  13. package/2.directory-structure/1.app/1.layouts.md +32 -0
  14. package/2.directory-structure/1.app/1.pages.md +21 -0
  15. package/2.directory-structure/1.app/1.plugins.md +3 -0
  16. package/2.directory-structure/1.app/3.error.md +9 -5
  17. package/2.directory-structure/1.layers.md +87 -0
  18. package/2.directory-structure/1.modules.md +12 -2
  19. package/2.directory-structure/1.node_modules.md +1 -1
  20. package/2.directory-structure/1.server.md +24 -4
  21. package/2.directory-structure/2.nuxtrc.md +3 -0
  22. package/2.directory-structure/3.tsconfig.md +1 -0
  23. package/2.directory-structure/index.md +4 -0
  24. package/3.guide/0.index.md +8 -2
  25. package/3.guide/1.concepts/1.rendering.md +1 -0
  26. package/3.guide/1.concepts/2.nuxt-lifecycle.md +1 -1
  27. package/3.guide/1.concepts/5.modules.md +14 -1
  28. package/3.guide/1.concepts/8.typescript.md +6 -2
  29. package/3.guide/3.ai/1.mcp.md +22 -0
  30. package/3.guide/4.modules/.navigation.yml +3 -0
  31. package/3.guide/4.modules/1.getting-started.md +103 -0
  32. package/3.guide/4.modules/2.module-anatomy.md +138 -0
  33. package/3.guide/4.modules/3.recipes-basics.md +330 -0
  34. package/3.guide/4.modules/4.recipes-advanced.md +243 -0
  35. package/3.guide/4.modules/5.testing.md +76 -0
  36. package/3.guide/4.modules/6.best-practices.md +104 -0
  37. package/3.guide/4.modules/7.ecosystem.md +32 -0
  38. package/3.guide/4.modules/index.md +36 -0
  39. package/3.guide/{4.recipes → 5.recipes}/2.vite-plugin.md +4 -0
  40. package/3.guide/{4.recipes → 5.recipes}/3.custom-usefetch.md +1 -1
  41. package/3.guide/{4.recipes → 5.recipes}/4.sessions-and-authentication.md +1 -1
  42. package/3.guide/{5.going-further → 6.going-further}/1.experimental-features.md +15 -0
  43. package/3.guide/{5.going-further → 6.going-further}/1.internals.md +3 -3
  44. package/3.guide/{5.going-further → 6.going-further}/10.runtime-config.md +1 -1
  45. package/3.guide/{5.going-further → 6.going-further}/2.hooks.md +1 -1
  46. package/3.guide/{5.going-further → 6.going-further}/4.kit.md +1 -1
  47. package/3.guide/{5.going-further → 6.going-further}/7.layers.md +26 -0
  48. package/4.api/1.components/1.nuxt-client-fallback.md +4 -0
  49. package/4.api/1.components/3.nuxt-layout.md +2 -2
  50. package/4.api/1.components/8.nuxt-island.md +9 -2
  51. package/4.api/2.composables/use-async-data.md +3 -3
  52. package/4.api/2.composables/use-error.md +2 -2
  53. package/4.api/2.composables/use-fetch.md +2 -2
  54. package/4.api/2.composables/use-head.md +16 -1
  55. package/4.api/2.composables/use-nuxt-app.md +2 -0
  56. package/4.api/2.composables/use-state.md +10 -0
  57. package/4.api/3.utils/create-error.md +6 -6
  58. package/4.api/3.utils/define-nuxt-route-middleware.md +1 -1
  59. package/4.api/3.utils/define-page-meta.md +8 -1
  60. package/4.api/3.utils/set-page-layout.md +36 -0
  61. package/4.api/3.utils/set-response-status.md +2 -2
  62. package/4.api/3.utils/show-error.md +3 -3
  63. package/4.api/4.commands/add.md +1 -1
  64. package/4.api/5.kit/1.modules.md +15 -2
  65. package/4.api/5.kit/14.builder.md +14 -2
  66. package/4.api/6.nuxt-config.md +2 -2
  67. package/5.community/4.contribution.md +5 -5
  68. package/5.community/5.framework-contribution.md +1 -1
  69. package/5.community/6.roadmap.md +1 -1
  70. package/5.community/7.changelog.md +10 -0
  71. package/6.bridge/1.overview.md +8 -0
  72. package/6.bridge/4.plugins-and-middleware.md +1 -1
  73. package/6.bridge/8.nitro.md +4 -0
  74. package/7.migration/2.configuration.md +2 -2
  75. package/7.migration/20.module-authors.md +2 -2
  76. package/7.migration/7.component-options.md +1 -1
  77. package/package.json +1 -1
  78. package/3.guide/5.going-further/3.modules.md +0 -968
  79. /package/3.guide/{4.recipes → 5.recipes}/.navigation.yml +0 -0
  80. /package/3.guide/{4.recipes → 5.recipes}/1.custom-routing.md +0 -0
  81. /package/3.guide/{5.going-further → 6.going-further}/.navigation.yml +0 -0
  82. /package/3.guide/{5.going-further → 6.going-further}/1.events.md +0 -0
  83. /package/3.guide/{5.going-further → 6.going-further}/1.features.md +0 -0
  84. /package/3.guide/{5.going-further → 6.going-further}/11.nightly-release-channel.md +0 -0
  85. /package/3.guide/{5.going-further → 6.going-further}/6.nuxt-app.md +0 -0
  86. /package/3.guide/{5.going-further → 6.going-further}/9.debugging.md +0 -0
  87. /package/3.guide/{5.going-further → 6.going-further}/index.md +0 -0