@nuxt/docs-nightly 4.2.2-29413031.9a62708b → 4.2.2-29420165.16c51935

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.
@@ -9,97 +9,97 @@ description: Nuxt provides a powerful hooking system to expand almost every aspe
9
9
 
10
10
  Check the [app source code](https://github.com/nuxt/nuxt/blob/main/packages/nuxt/src/app/nuxt.ts#L37) for all available hooks.
11
11
 
12
- Hook | Arguments | Environment | Description
13
- -----------------------|---------------------|-----------------|-------------
14
- `app:created` | `vueApp` | Server & Client | Called when initial `vueApp` instance is created.
15
- `app:error` | `err` | Server & Client | Called when a fatal error occurs.
16
- `app:error:cleared` | `{ redirect? }` | Server & Client | Called when a fatal error occurs.
17
- `vue:setup` | - | Server & Client | Called when the setup of Nuxt root is initialized. This callback must be synchronous.
18
- `vue:error` | `err, target, info` | Server & Client | Called when a vue error propagates to the root component. [Learn More](https://vuejs.org/api/composition-api-lifecycle#onerrorcaptured).
19
- `app:rendered` | `renderContext` | Server | Called when SSR rendering is done.
20
- `app:redirected` | - | Server | Called before SSR redirection.
21
- `app:beforeMount` | `vueApp` | Client | Called before mounting the app, called only on client side.
22
- `app:mounted` | `vueApp` | Client | Called when Vue app is initialized and mounted in browser.
23
- `app:suspense:resolve` | `appComponent` | Client | On [Suspense](https://vuejs.org/guide/built-ins/suspense#suspense) resolved event.
24
- `app:manifest:update` | `{ id, timestamp }` | Client | Called when there is a newer version of your app detected.
25
- `app:data:refresh` | `keys?` | Client | Called when `refreshNuxtData` is called.
26
- `link:prefetch` | `to` | Client | Called when a `<NuxtLink>` is observed to be prefetched.
27
- `page:start` | `pageComponent?` | Client | Called on [Suspense](https://vuejs.org/guide/built-ins/suspense#suspense) inside of `NuxtPage` pending event.
28
- `page:finish` | `pageComponent?` | Client | Called on [Suspense](https://vuejs.org/guide/built-ins/suspense#suspense) inside of `NuxtPage` resolved event.
29
- `page:loading:start` | - | Client | Called when the `setup()` of the new page is running.
30
- `page:loading:end` | - | Client | Called after `page:finish`
31
- `page:transition:finish`| `pageComponent?` | Client | After page transition [onAfterLeave](https://vuejs.org/guide/built-ins/transition#javascript-hooks) event.
32
- `dev:ssr-logs` | `logs` | Client | Called with an array of server-side logs that have been passed to the client (if `features.devLogs` is enabled).
33
- `page:view-transition:start` | `transition` | Client | Called after `document.startViewTransition` is called when [experimental viewTransition support is enabled](/docs/4.x/getting-started/transitions#view-transitions-api-experimental).
12
+ | Hook | Arguments | Environment | Description |
13
+ |------------------------------|---------------------|-----------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
14
+ | `app:created` | `vueApp` | Server & Client | Called when initial `vueApp` instance is created. |
15
+ | `app:error` | `err` | Server & Client | Called when a fatal error occurs. |
16
+ | `app:error:cleared` | `{ redirect? }` | Server & Client | Called when a fatal error occurs. |
17
+ | `vue:setup` | - | Server & Client | Called when the setup of Nuxt root is initialized. This callback must be synchronous. |
18
+ | `vue:error` | `err, target, info` | Server & Client | Called when a vue error propagates to the root component. [Learn More](https://vuejs.org/api/composition-api-lifecycle#onerrorcaptured). |
19
+ | `app:rendered` | `renderContext` | Server | Called when SSR rendering is done. |
20
+ | `app:redirected` | - | Server | Called before SSR redirection. |
21
+ | `app:beforeMount` | `vueApp` | Client | Called before mounting the app, called only on client side. |
22
+ | `app:mounted` | `vueApp` | Client | Called when Vue app is initialized and mounted in browser. |
23
+ | `app:suspense:resolve` | `appComponent` | Client | On [Suspense](https://vuejs.org/guide/built-ins/suspense#suspense) resolved event. |
24
+ | `app:manifest:update` | `{ id, timestamp }` | Client | Called when there is a newer version of your app detected. |
25
+ | `app:data:refresh` | `keys?` | Client | Called when `refreshNuxtData` is called. |
26
+ | `link:prefetch` | `to` | Client | Called when a `<NuxtLink>` is observed to be prefetched. |
27
+ | `page:start` | `pageComponent?` | Client | Called on [Suspense](https://vuejs.org/guide/built-ins/suspense#suspense) inside of `NuxtPage` pending event. |
28
+ | `page:finish` | `pageComponent?` | Client | Called on [Suspense](https://vuejs.org/guide/built-ins/suspense#suspense) inside of `NuxtPage` resolved event. |
29
+ | `page:loading:start` | - | Client | Called when the `setup()` of the new page is running. |
30
+ | `page:loading:end` | - | Client | Called after `page:finish` |
31
+ | `page:transition:finish` | `pageComponent?` | Client | After page transition [onAfterLeave](https://vuejs.org/guide/built-ins/transition#javascript-hooks) event. |
32
+ | `dev:ssr-logs` | `logs` | Client | Called with an array of server-side logs that have been passed to the client (if `features.devLogs` is enabled). |
33
+ | `page:view-transition:start` | `transition` | Client | Called after `document.startViewTransition` is called when [experimental viewTransition support is enabled](/docs/4.x/getting-started/transitions#view-transitions-api-experimental). |
34
34
 
35
35
  ## Nuxt Hooks (build time)
36
36
 
37
37
  Check the [schema source code](https://github.com/nuxt/nuxt/blob/main/packages/schema/src/types/hooks.ts#L83) for all available hooks.
38
38
 
39
- Hook | Arguments | Description
40
- -------------------------|----------------------------|-------------
41
- `kit:compatibility` | `compatibility, issues` | Allows extending compatibility checks.
42
- `ready` | `nuxt` | Called after Nuxt initialization, when the Nuxt instance is ready to work.
43
- `close` | `nuxt` | Called when Nuxt instance is gracefully closing.
44
- `restart` | `{ hard?: boolean }` | To be called to restart the current Nuxt instance.
45
- `modules:before` | - | Called during Nuxt initialization, before installing user modules.
46
- `modules:done` | - | Called during Nuxt initialization, after installing user modules.
47
- `app:resolve` | `app` | Called after resolving the `app` instance.
48
- `app:templates` | `app` | Called during `NuxtApp` generation, to allow customizing, modifying or adding new files to the build directory (either virtually or to written to `.nuxt`).
49
- `app:templatesGenerated` | `app` | Called after templates are compiled into the [virtual file system](/docs/4.x/directory-structure/nuxt) (vfs).
50
- `build:before` | - | Called before Nuxt bundle builder.
51
- `build:done` | - | Called after Nuxt bundle builder is complete.
52
- `build:manifest` | `manifest` | Called during the manifest build by Vite and webpack. This allows customizing the manifest that Nitro will use to render `<script>` and `<link>` tags in the final HTML.
53
- `builder:generateApp` | `options` | Called before generating the app.
54
- `builder:watch` | `event, path` | Called at build time in development when the watcher spots a change to a file or directory in the project.
55
- `pages:extend` | `pages` | Called after page routes are scanned from the file system.
56
- `pages:resolved` | `pages` | Called after page routes have been augmented with scanned metadata.
57
- `pages:routerOptions` | `{ files: Array<{ path: string, optional?: boolean }> }` | Called when resolving `router.options` files. Later items in the array override earlier ones.
58
- `server:devHandler` | `handler` | Called when the dev middleware is being registered on the Nitro dev server.
59
- `imports:sources` | `presets` | Called at setup allowing modules to extend sources.
60
- `imports:extend` | `imports` | Called at setup allowing modules to extend imports.
61
- `imports:context` | `context` | Called when the [unimport](https://github.com/unjs/unimport) context is created.
62
- `imports:dirs` | `dirs` | Allows extending import directories.
63
- `components:dirs` | `dirs` | Called within `app:resolve` allowing to extend the directories that are scanned for auto-importable components.
64
- `components:extend` | `components` | Allows extending new components.
65
- `nitro:config` | `nitroConfig` | Called before initializing Nitro, allowing customization of Nitro's configuration.
66
- `nitro:init` | `nitro` | Called after Nitro is initialized, which allows registering Nitro hooks and interacting directly with Nitro.
67
- `nitro:build:before` | `nitro` | Called before building the Nitro instance.
68
- `nitro:build:public-assets` | `nitro` | Called after copying public assets. Allows modifying public assets before Nitro server is built.
69
- `prerender:routes` | `ctx` | Allows extending the routes to be pre-rendered.
70
- `build:error` | `error` | Called when an error occurs at build time.
71
- `prepare:types` | `options` | Called before `@nuxt/cli` writes TypeScript configuration files (`.nuxt/tsconfig.app.json`, `.nuxt/tsconfig.server.json`, etc.) and `.nuxt/nuxt.d.ts`, allowing addition of custom references and declarations in `nuxt.d.ts`, or directly modifying the options in generated configurations
72
- `listen` | `listenerServer, listener` | Called when the dev server is loading.
73
- `schema:extend` | `schemas` | Allows extending default schemas.
74
- `schema:resolved` | `schema` | Allows extending resolved schema.
75
- `schema:beforeWrite` | `schema` | Called before writing the given schema.
76
- `schema:written` | - | Called after the schema is written.
77
- `vite:extend` | `viteBuildContext` | Allows extending Vite default context.
78
- `vite:extendConfig` | `viteInlineConfig, env` | Allows extending Vite default config. **Deprecated in Nuxt 5+.** In Nuxt 5, this operates on a shared configuration rather than separate client/server configs.
79
- `vite:configResolved` | `viteInlineConfig, env` | Allows reading the resolved Vite config. **Deprecated in Nuxt 5+.** In Nuxt 5, this operates on a shared configuration rather than separate client/server configs.
80
- `vite:serverCreated` | `viteServer, env` | Called when the Vite server is created.
81
- `vite:compiled` | - | Called after Vite server is compiled.
82
- `webpack:config` | `webpackConfigs` | Called before configuring the webpack compiler.
83
- `webpack:configResolved` | `webpackConfigs` | Allows reading the resolved webpack config.
84
- `webpack:compile` | `options` | Called right before compilation.
85
- `webpack:compiled` | `options` | Called after resources are loaded.
86
- `webpack:change` | `shortPath` | Called on `change` on WebpackBar.
87
- `webpack:error` | - | Called on `done` if has errors on WebpackBar.
88
- `webpack:done` | - | Called on `allDone` on WebpackBar.
89
- `webpack:progress` | `statesArray` | Called on `progress` on WebpackBar.
39
+ | Hook | Arguments | Description |
40
+ |-----------------------------|----------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
41
+ | `kit:compatibility` | `compatibility, issues` | Allows extending compatibility checks. |
42
+ | `ready` | `nuxt` | Called after Nuxt initialization, when the Nuxt instance is ready to work. |
43
+ | `close` | `nuxt` | Called when Nuxt instance is gracefully closing. |
44
+ | `restart` | `{ hard?: boolean }` | To be called to restart the current Nuxt instance. |
45
+ | `modules:before` | - | Called during Nuxt initialization, before installing user modules. |
46
+ | `modules:done` | - | Called during Nuxt initialization, after installing user modules. |
47
+ | `app:resolve` | `app` | Called after resolving the `app` instance. |
48
+ | `app:templates` | `app` | Called during `NuxtApp` generation, to allow customizing, modifying or adding new files to the build directory (either virtually or to written to `.nuxt`). |
49
+ | `app:templatesGenerated` | `app` | Called after templates are compiled into the [virtual file system](/docs/4.x/directory-structure/nuxt) (vfs). |
50
+ | `build:before` | - | Called before Nuxt bundle builder. |
51
+ | `build:done` | - | Called after Nuxt bundle builder is complete. |
52
+ | `build:manifest` | `manifest` | Called during the manifest build by Vite and webpack. This allows customizing the manifest that Nitro will use to render `<script>` and `<link>` tags in the final HTML. |
53
+ | `builder:generateApp` | `options` | Called before generating the app. |
54
+ | `builder:watch` | `event, path` | Called at build time in development when the watcher spots a change to a file or directory in the project. |
55
+ | `pages:extend` | `pages` | Called after page routes are scanned from the file system. |
56
+ | `pages:resolved` | `pages` | Called after page routes have been augmented with scanned metadata. |
57
+ | `pages:routerOptions` | `{ files: Array<{ path: string, optional?: boolean }> }` | Called when resolving `router.options` files. Later items in the array override earlier ones. |
58
+ | `server:devHandler` | `handler` | Called when the dev middleware is being registered on the Nitro dev server. |
59
+ | `imports:sources` | `presets` | Called at setup allowing modules to extend sources. |
60
+ | `imports:extend` | `imports` | Called at setup allowing modules to extend imports. |
61
+ | `imports:context` | `context` | Called when the [unimport](https://github.com/unjs/unimport) context is created. |
62
+ | `imports:dirs` | `dirs` | Allows extending import directories. |
63
+ | `components:dirs` | `dirs` | Called within `app:resolve` allowing to extend the directories that are scanned for auto-importable components. |
64
+ | `components:extend` | `components` | Allows extending new components. |
65
+ | `nitro:config` | `nitroConfig` | Called before initializing Nitro, allowing customization of Nitro's configuration. |
66
+ | `nitro:init` | `nitro` | Called after Nitro is initialized, which allows registering Nitro hooks and interacting directly with Nitro. |
67
+ | `nitro:build:before` | `nitro` | Called before building the Nitro instance. |
68
+ | `nitro:build:public-assets` | `nitro` | Called after copying public assets. Allows modifying public assets before Nitro server is built. |
69
+ | `prerender:routes` | `ctx` | Allows extending the routes to be pre-rendered. |
70
+ | `build:error` | `error` | Called when an error occurs at build time. |
71
+ | `prepare:types` | `options` | Called before `@nuxt/cli` writes TypeScript configuration files (`.nuxt/tsconfig.app.json`, `.nuxt/tsconfig.server.json`, etc.) and `.nuxt/nuxt.d.ts`, allowing addition of custom references and declarations in `nuxt.d.ts`, or directly modifying the options in generated configurations |
72
+ | `listen` | `listenerServer, listener` | Called when the dev server is loading. |
73
+ | `schema:extend` | `schemas` | Allows extending default schemas. |
74
+ | `schema:resolved` | `schema` | Allows extending resolved schema. |
75
+ | `schema:beforeWrite` | `schema` | Called before writing the given schema. |
76
+ | `schema:written` | - | Called after the schema is written. |
77
+ | `vite:extend` | `viteBuildContext` | Allows extending Vite default context. |
78
+ | `vite:extendConfig` | `viteInlineConfig, env` | Allows extending Vite default config. **Deprecated in Nuxt 5+.** In Nuxt 5, this operates on a shared configuration rather than separate client/server configs. |
79
+ | `vite:configResolved` | `viteInlineConfig, env` | Allows reading the resolved Vite config. **Deprecated in Nuxt 5+.** In Nuxt 5, this operates on a shared configuration rather than separate client/server configs. |
80
+ | `vite:serverCreated` | `viteServer, env` | Called when the Vite server is created. |
81
+ | `vite:compiled` | - | Called after Vite server is compiled. |
82
+ | `webpack:config` | `webpackConfigs` | Called before configuring the webpack compiler. |
83
+ | `webpack:configResolved` | `webpackConfigs` | Allows reading the resolved webpack config. |
84
+ | `webpack:compile` | `options` | Called right before compilation. |
85
+ | `webpack:compiled` | `options` | Called after resources are loaded. |
86
+ | `webpack:change` | `shortPath` | Called on `change` on WebpackBar. |
87
+ | `webpack:error` | - | Called on `done` if has errors on WebpackBar. |
88
+ | `webpack:done` | - | Called on `allDone` on WebpackBar. |
89
+ | `webpack:progress` | `statesArray` | Called on `progress` on WebpackBar. |
90
90
 
91
91
  ## Nitro App Hooks (runtime, server-side)
92
92
 
93
93
  See [Nitro](https://nitro.build/guide/plugins#available-hooks) for all available hooks.
94
94
 
95
- Hook | Arguments | Description | Types
96
- -----------------------|-----------------------|--------------------------------------|------------------
97
- `dev:ssr-logs` | `{ path, logs }` | Server | Called at the end of a request cycle with an array of server-side logs.
98
- `render:response` | `response, { event }` | Called before sending the response. | [response](https://github.com/nuxt/nuxt/blob/71ef8bd3ff207fd51c2ca18d5a8c7140476780c7/packages/nuxt/src/core/runtime/nitro/renderer.ts#L24), [event](https://github.com/h3js/h3/blob/f6ceb5581043dc4d8b6eab91e9be4531e0c30f8e/src/types.ts#L38)
99
- `render:html` | `html, { event }` | Called before constructing the HTML. | [html](https://github.com/nuxt/nuxt/blob/71ef8bd3ff207fd51c2ca18d5a8c7140476780c7/packages/nuxt/src/core/runtime/nitro/renderer.ts#L15), [event](https://github.com/h3js/h3/blob/f6ceb5581043dc4d8b6eab91e9be4531e0c30f8e/src/types.ts#L38)
100
- `render:island` | `islandResponse, { event, islandContext }` | Called before constructing the island HTML. | [islandResponse](https://github.com/nuxt/nuxt/blob/e50cabfed1984c341af0d0c056a325a8aec26980/packages/nuxt/src/core/runtime/nitro/renderer.ts#L28), [event](https://github.com/h3js/h3/blob/f6ceb5581043dc4d8b6eab91e9be4531e0c30f8e/src/types.ts#L38), [islandContext](https://github.com/nuxt/nuxt/blob/e50cabfed1984c341af0d0c056a325a8aec26980/packages/nuxt/src/core/runtime/nitro/renderer.ts#L38)
101
- `close` | - | Called when Nitro is closed. | -
102
- `error` | `error, { event? }` | Called when an error occurs. | [error](https://github.com/nitrojs/nitro/blob/d20ffcbd16fc4003b774445e1a01e698c2bb078a/src/types/runtime/nitro.ts#L48), [event](https://github.com/h3js/h3/blob/f6ceb5581043dc4d8b6eab91e9be4531e0c30f8e/src/types.ts#L38)
103
- `request` | `event` | Called when a request is received. | [event](https://github.com/h3js/h3/blob/f6ceb5581043dc4d8b6eab91e9be4531e0c30f8e/src/types.ts#L38)
104
- `beforeResponse` | `event, { body }` | Called before sending the response. | [event](https://github.com/h3js/h3/blob/f6ceb5581043dc4d8b6eab91e9be4531e0c30f8e/src/types.ts#L38), unknown
105
- `afterResponse` | `event, { body }` | Called after sending the response. | [event](https://github.com/h3js/h3/blob/f6ceb5581043dc4d8b6eab91e9be4531e0c30f8e/src/types.ts#L38), unknown
95
+ | Hook | Arguments | Description | Types |
96
+ |-------------------|--------------------------------------------|---------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
97
+ | `dev:ssr-logs` | `{ path, logs }` | Server | Called at the end of a request cycle with an array of server-side logs. |
98
+ | `render:response` | `response, { event }` | Called before sending the response. | [response](https://github.com/nuxt/nuxt/blob/71ef8bd3ff207fd51c2ca18d5a8c7140476780c7/packages/nuxt/src/core/runtime/nitro/renderer.ts#L24), [event](https://github.com/h3js/h3/blob/f6ceb5581043dc4d8b6eab91e9be4531e0c30f8e/src/types.ts#L38) |
99
+ | `render:html` | `html, { event }` | Called before constructing the HTML. | [html](https://github.com/nuxt/nuxt/blob/71ef8bd3ff207fd51c2ca18d5a8c7140476780c7/packages/nuxt/src/core/runtime/nitro/renderer.ts#L15), [event](https://github.com/h3js/h3/blob/f6ceb5581043dc4d8b6eab91e9be4531e0c30f8e/src/types.ts#L38) |
100
+ | `render:island` | `islandResponse, { event, islandContext }` | Called before constructing the island HTML. | [islandResponse](https://github.com/nuxt/nuxt/blob/e50cabfed1984c341af0d0c056a325a8aec26980/packages/nuxt/src/core/runtime/nitro/renderer.ts#L28), [event](https://github.com/h3js/h3/blob/f6ceb5581043dc4d8b6eab91e9be4531e0c30f8e/src/types.ts#L38), [islandContext](https://github.com/nuxt/nuxt/blob/e50cabfed1984c341af0d0c056a325a8aec26980/packages/nuxt/src/core/runtime/nitro/renderer.ts#L38) |
101
+ | `close` | - | Called when Nitro is closed. | - |
102
+ | `error` | `error, { event? }` | Called when an error occurs. | [error](https://github.com/nitrojs/nitro/blob/d20ffcbd16fc4003b774445e1a01e698c2bb078a/src/types/runtime/nitro.ts#L48), [event](https://github.com/h3js/h3/blob/f6ceb5581043dc4d8b6eab91e9be4531e0c30f8e/src/types.ts#L38) |
103
+ | `request` | `event` | Called when a request is received. | [event](https://github.com/h3js/h3/blob/f6ceb5581043dc4d8b6eab91e9be4531e0c30f8e/src/types.ts#L38) |
104
+ | `beforeResponse` | `event, { body }` | Called before sending the response. | [event](https://github.com/h3js/h3/blob/f6ceb5581043dc4d8b6eab91e9be4531e0c30f8e/src/types.ts#L38), unknown |
105
+ | `afterResponse` | `event, { body }` | Called after sending the response. | [event](https://github.com/h3js/h3/blob/f6ceb5581043dc4d8b6eab91e9be4531e0c30f8e/src/types.ts#L38), unknown |
@@ -28,22 +28,22 @@ In roadmap below are some features we are planning or working on at the moment.
28
28
  Check [Discussions](https://github.com/nuxt/nuxt/discussions) and [RFCs](https://github.com/nuxt/nuxt/discussions/categories/rfcs) for more upcoming features and ideas.
29
29
  ::
30
30
 
31
- Milestone | Expected date | Notes | Description
32
- -------------|---------------|------------------------------------------------------------------------|-----------------------
33
- SEO & PWA | 2025 | [nuxt/nuxt#18395](https://github.com/nuxt/nuxt/discussions/18395) | Migrating from [nuxt-community/pwa-module](https://github.com/nuxt-community/pwa-module) for built-in SEO utils and service worker support
34
- Assets | 2025 | [nuxt/nuxt#22012](https://github.com/nuxt/nuxt/discussions/22012) | Allow developers and modules to handle loading third-party assets.
35
- Translations | - | [nuxt/nuxt.com#1711](https://github.com/nuxt/nuxt.com/issues/1711) | A collaborative project for a stable translation process for Nuxt docs. Currently pending for ideas and documentation tooling support.
31
+ | Milestone | Expected date | Notes | Description |
32
+ |--------------|---------------|--------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------|
33
+ | SEO & PWA | 2025 | [nuxt/nuxt#18395](https://github.com/nuxt/nuxt/discussions/18395) | Migrating from [nuxt-community/pwa-module](https://github.com/nuxt-community/pwa-module) for built-in SEO utils and service worker support |
34
+ | Assets | 2025 | [nuxt/nuxt#22012](https://github.com/nuxt/nuxt/discussions/22012) | Allow developers and modules to handle loading third-party assets. |
35
+ | Translations | - | [nuxt/nuxt.com#1711](https://github.com/nuxt/nuxt.com/issues/1711) | A collaborative project for a stable translation process for Nuxt docs. Currently pending for ideas and documentation tooling support. |
36
36
 
37
37
  ## Core Modules Roadmap
38
38
 
39
39
  In addition to the Nuxt framework, there are modules that are vital for the ecosystem. Their status will be updated below.
40
40
 
41
- Module | Status | Nuxt Support | Repository | Description
42
- ---------------------------------------|---------------------|--------------|------------|-------------------
43
- [Scripts](https://scripts.nuxt.com) | Public Beta | 3.x, 4.x | [nuxt/scripts](https://github.com/nuxt/scripts) | Easy 3rd party script management.
44
- Auth Utils | Planned | 4.x, 5.x | `nuxt/auth-utils` to be announced | The temporary repository [atinux/nuxt-auth-utils](https://github.com/atinux/nuxt-auth-utils) is available while awaiting its official integration into Nuxt via RFC.
45
- A11y | Planned | 4.x, 5.x | `nuxt/a11y` to be announced | Accessibility hinting and utilities [nuxt/nuxt#23255](https://github.com/nuxt/nuxt/issues/23255)
46
- [Hints](https://github.com/nuxt/hints) | Public Alpha | 4.x, 5.x | [nuxt/hints](https://github.com/nuxt/hints) | Guidance and suggestions for enhancing development practices.
41
+ | Module | Status | Nuxt Support | Repository | Description |
42
+ |----------------------------------------|--------------|--------------|-------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------|
43
+ | [Scripts](https://scripts.nuxt.com) | Public Beta | 3.x, 4.x | [nuxt/scripts](https://github.com/nuxt/scripts) | Easy 3rd party script management. |
44
+ | Auth Utils | Planned | 4.x, 5.x | `nuxt/auth-utils` to be announced | The temporary repository [atinux/nuxt-auth-utils](https://github.com/atinux/nuxt-auth-utils) is available while awaiting its official integration into Nuxt via RFC. |
45
+ | A11y | Planned | 4.x, 5.x | `nuxt/a11y` to be announced | Accessibility hinting and utilities [nuxt/nuxt#23255](https://github.com/nuxt/nuxt/issues/23255) |
46
+ | [Hints](https://github.com/nuxt/hints) | Public Alpha | 4.x, 5.x | [nuxt/hints](https://github.com/nuxt/hints) | Guidance and suggestions for enhancing development practices. |
47
47
 
48
48
  ## Release Cycle
49
49
 
@@ -65,20 +65,20 @@ Nuxt 3 will continue to receive maintenance updates (both bug fixes and backport
65
65
 
66
66
  Each active version has its own nightly releases which are generated automatically. For more about enabling the Nuxt nightly release channel, see [the nightly release channel docs](/docs/4.x/guide/going-further/nightly-release-channel).
67
67
 
68
- Release | | Initial release | End Of Life | Docs
69
- -------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------------------------- | ---------------------------------------
70
- **5.x** (scheduled) | | Q4 2025 (estimated) | TBA | &nbsp;
71
- **4.x** (stable) | <a href="https://www.npmjs.com/package/nuxt?activeTab=versions"><img alt="Nuxt latest version" src="https://img.shields.io/npm/v/nuxt.svg?logo=nuxt&label=&style=flat&colorA=18181B&colorB=28CF8D" class="not-prose h-5 w-auto" :zoom="false"></a> | 2025-07-16 | 6 months after 5.x release | [nuxt.com](/docs/4.x/getting-started/introduction)
72
- **3.x** (maintenance) | <a href="https://www.npmjs.com/package/nuxt?activeTab=versions"><img alt="Nuxt 3.x version" src="https://img.shields.io/npm/v/nuxt/3x.svg?logo=nuxt&label=&style=flat&colorA=18181B&colorB=28CF8D" class="not-prose h-5 w-auto" :zoom="false"></a> | 2022-11-16 | 2026-01-31 | [nuxt.com](/docs/3.x/getting-started/introduction)
73
- **2.x** (unsupported) | <a href="https://www.npmjs.com/package/nuxt?activeTab=versions"><img alt="Nuxt 2.x version" src="https://img.shields.io/npm/v/nuxt/2x.svg?logo=nuxt&label=&style=flat&colorA=18181B&colorB=28CF8D" class="not-prose h-5 w-auto" :zoom="false"></a> | 2018-09-21 | 2024-06-30 | [v2.nuxt.com](https://v2.nuxt.com/docs/get-started/installation/)
74
- **1.x** (unsupported) | <a href="https://www.npmjs.com/package/nuxt?activeTab=versions"><img alt="Nuxt 1.x version" src="https://img.shields.io/npm/v/nuxt/1x.svg?logo=nuxt&label=&style=flat&colorA=18181B&colorB=28CF8D" class="not-prose h-5 w-auto" :zoom="false"></a> | 2018-01-08 | 2019-09-21 | &nbsp;
68
+ | Release | | Initial release | End Of Life | Docs |
69
+ |-----------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|----------------------------|-------------------------------------------------------------------|
70
+ | **5.x** (scheduled) | | Q4 2025 (estimated) | TBA | &nbsp; |
71
+ | **4.x** (stable) | <a href="https://www.npmjs.com/package/nuxt?activeTab=versions"><img alt="Nuxt latest version" src="https://img.shields.io/npm/v/nuxt.svg?logo=nuxt&label=&style=flat&colorA=18181B&colorB=28CF8D" class="not-prose h-5 w-auto" :zoom="false"></a> | 2025-07-16 | 6 months after 5.x release | [nuxt.com](/docs/4.x/getting-started/introduction) |
72
+ | **3.x** (maintenance) | <a href="https://www.npmjs.com/package/nuxt?activeTab=versions"><img alt="Nuxt 3.x version" src="https://img.shields.io/npm/v/nuxt/3x.svg?logo=nuxt&label=&style=flat&colorA=18181B&colorB=28CF8D" class="not-prose h-5 w-auto" :zoom="false"></a> | 2022-11-16 | 2026-01-31 | [nuxt.com](/docs/3.x/getting-started/introduction) |
73
+ | **2.x** (unsupported) | <a href="https://www.npmjs.com/package/nuxt?activeTab=versions"><img alt="Nuxt 2.x version" src="https://img.shields.io/npm/v/nuxt/2x.svg?logo=nuxt&label=&style=flat&colorA=18181B&colorB=28CF8D" class="not-prose h-5 w-auto" :zoom="false"></a> | 2018-09-21 | 2024-06-30 | [v2.nuxt.com](https://v2.nuxt.com/docs/get-started/installation/) |
74
+ | **1.x** (unsupported) | <a href="https://www.npmjs.com/package/nuxt?activeTab=versions"><img alt="Nuxt 1.x version" src="https://img.shields.io/npm/v/nuxt/1x.svg?logo=nuxt&label=&style=flat&colorA=18181B&colorB=28CF8D" class="not-prose h-5 w-auto" :zoom="false"></a> | 2018-01-08 | 2019-09-21 | &nbsp; |
75
75
 
76
76
  ### Support Status
77
77
 
78
- Status | Description
79
- ------------|----------------------------------------------------------------------------------
80
- Unsupported | This version is not maintained any more and will not receive security patches
81
- Maintenance | This version will only receive security patches
82
- Stable | This version is being developed for and will receive security patches
83
- Development | This version could be unstable
84
- Scheduled | This version does not exist yet but is planned
78
+ | Status | Description |
79
+ |-------------|-------------------------------------------------------------------------------|
80
+ | Unsupported | This version is not maintained any more and will not receive security patches |
81
+ | Maintenance | This version will only receive security patches |
82
+ | Stable | This version is being developed for and will receive security patches |
83
+ | Development | This version could be unstable |
84
+ | Scheduled | This version does not exist yet but is planned |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nuxt/docs-nightly",
3
- "version": "4.2.2-29413031.9a62708b",
3
+ "version": "4.2.2-29420165.16c51935",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/nuxt/nuxt.git",