@nuxt/docs-nightly 5.0.0-29795707.ddefa441 → 5.0.0-29796419.a2fd06ab
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.
|
@@ -44,6 +44,8 @@ Check the [schema source code](https://github.com/nuxt/nuxt/blob/main/packages/s
|
|
|
44
44
|
| `restart` | `{ hard?: boolean }` | To be called to restart the current Nuxt instance. |
|
|
45
45
|
| `modules:before` | - | Called during Nuxt initialization, before installing user modules. |
|
|
46
46
|
| `modules:done` | - | Called during Nuxt initialization, after installing user modules. |
|
|
47
|
+
| `module:before` | `module` | Called immediately before each individual module is set up. |
|
|
48
|
+
| `module:done` | `module` | Called immediately after each individual module has been set up, including how long it took. |
|
|
47
49
|
| `app:resolve` | `app` | Called after resolving the `app` instance. |
|
|
48
50
|
| `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
51
|
| `app:templatesGenerated` | `app` | Called after templates are compiled into the [virtual file system](/docs/4.x/directory-structure/nuxt) (vfs). |
|