@nuxt/schema-nightly 4.1.3-29313386.edc02e27 → 4.1.3-29314777.50febbbb

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.
package/README.md CHANGED
@@ -93,13 +93,13 @@ Discover our [list of modules](https://nuxt.com/modules) to supercharge your Nux
93
93
  We invite you to contribute and help improve Nuxt 💚
94
94
 
95
95
  Here are a few ways you can get involved:
96
- - **Reporting Bugs:** If you come across any bugs or issues, please check out the [reporting bugs guide](https://nuxt.com/docs/community/reporting-bugs) to learn how to submit a bug report.
97
- - **Suggestions:** Have ideas to enhance Nuxt? We'd love to hear them! Check out the [contribution guide](https://nuxt.com/docs/community/contribution) to share your suggestions.
98
- - **Questions:** If you have questions or need assistance, the [getting help guide](https://nuxt.com/docs/community/getting-help) provides resources to help you out.
96
+ - **Reporting Bugs:** If you come across any bugs or issues, please check out the [reporting bugs guide](https://nuxt.com/docs/4.x/community/reporting-bugs) to learn how to submit a bug report.
97
+ - **Suggestions:** Have ideas to enhance Nuxt? We'd love to hear them! Check out the [contribution guide](https://nuxt.com/docs/4.x/community/contribution) to share your suggestions.
98
+ - **Questions:** If you have questions or need assistance, the [getting help guide](https://nuxt.com/docs/4.x/community/getting-help) provides resources to help you out.
99
99
 
100
100
  ## <a name="local-development">🏠 Local Development</a>
101
101
 
102
- Follow the docs to [Set Up Your Local Development Environment](https://nuxt.com/docs/community/framework-contribution#setup) to contribute to the framework and documentation.
102
+ Follow the docs to [Set Up Your Local Development Environment](https://nuxt.com/docs/4.x/community/framework-contribution#setup) to contribute to the framework and documentation.
103
103
 
104
104
  ## <a name="professional-support">🛟 Professional Support</a>
105
105
 
package/dist/index.d.mts CHANGED
@@ -531,7 +531,7 @@ interface NuxtHooks {
531
531
  */
532
532
  'app:templates': (app: NuxtApp) => HookResult;
533
533
  /**
534
- * Called after templates are compiled into the [virtual file system](https://nuxt.com/docs/guide/directory-structure/nuxt#virtual-file-system) (vfs).
534
+ * Called after templates are compiled into the [virtual file system](https://nuxt.com/docs/4.x/guide/directory-structure/nuxt) (vfs).
535
535
  * @param app The configured `NuxtApp` object
536
536
  * @returns Promise
537
537
  */
@@ -909,7 +909,7 @@ interface ImportsOptions extends UnimportOptions {
909
909
  autoImport?: boolean;
910
910
  /**
911
911
  * Directories to scan for auto imports.
912
- * @see https://nuxt.com/docs/guide/directory-structure/composables#how-files-are-scanned
912
+ * @see https://nuxt.com/docs/4.x/guide/directory-structure/composables#how-files-are-scanned
913
913
  */
914
914
  dirs?: string[];
915
915
  /**
@@ -937,13 +937,13 @@ interface ConfigSchema {
937
937
  *
938
938
  * Any components in the directories configured here can be used throughout your pages, layouts (and other components) without needing to explicitly import them.
939
939
  *
940
- * @see [`components/` directory documentation](https://nuxt.com/docs/guide/directory-structure/components)
940
+ * @see [`components/` directory documentation](https://nuxt.com/docs/4.x/guide/directory-structure/components)
941
941
  */
942
942
  components: boolean | ComponentsOptions | ComponentsOptions['dirs'];
943
943
  /**
944
944
  * Configure how Nuxt auto-imports composables into your application.
945
945
  *
946
- * @see [Nuxt documentation](https://nuxt.com/docs/guide/directory-structure/composables)
946
+ * @see [Nuxt documentation](https://nuxt.com/docs/4.x/guide/directory-structure/composables)
947
947
  */
948
948
  imports: ImportsOptions;
949
949
  /**
@@ -1110,10 +1110,10 @@ interface ConfigSchema {
1110
1110
  /**
1111
1111
  * Default values for view transitions.
1112
1112
  *
1113
- * This only has an effect when **experimental** support for View Transitions is [enabled in your nuxt.config file](/docs/getting-started/transitions#view-transitions-api-experimental).
1113
+ * This only has an effect when **experimental** support for View Transitions is [enabled in your nuxt.config file](https://nuxt.com/docs/4.x/getting-started/transitions#view-transitions-api-experimental).
1114
1114
  * This can be overridden with `definePageMeta` on an individual page.
1115
1115
  *
1116
- * @see [Nuxt View Transition API docs](https://nuxt.com/docs/getting-started/transitions#view-transitions-api-experimental)
1116
+ * @see [Nuxt View Transition API docs](https://nuxt.com/docs/4.x/getting-started/transitions#view-transitions-api-experimental)
1117
1117
  */
1118
1118
  viewTransition: NuxtAppConfig['viewTransition'];
1119
1119
  /**
@@ -1223,7 +1223,7 @@ interface ConfigSchema {
1223
1223
  * and these plugins do not need to be listed in `nuxt.config` unless you
1224
1224
  * need to customize their order. All plugins are deduplicated by their src path.
1225
1225
  *
1226
- * @see [`plugins/` directory documentation](https://nuxt.com/docs/guide/directory-structure/plugins)
1226
+ * @see [`plugins/` directory documentation](https://nuxt.com/docs/4.x/guide/directory-structure/plugins)
1227
1227
  *
1228
1228
  * @example
1229
1229
  * ```js
@@ -2308,7 +2308,7 @@ interface ConfigSchema {
2308
2308
  * Each handler accepts the following options:
2309
2309
  * - handler: The path to the file defining the handler. - route: The route under which the handler is available. This follows the conventions of [rou3](https://github.com/h3js/rou3). - method: The HTTP method of requests that should be handled. - middleware: Specifies whether it is a middleware handler. - lazy: Specifies whether to use lazy loading to import the handler.
2310
2310
  *
2311
- * @see [`server/` directory documentation](https://nuxt.com/docs/guide/directory-structure/server)
2311
+ * @see [`server/` directory documentation](https://nuxt.com/docs/4.x/guide/directory-structure/server)
2312
2312
  *
2313
2313
  * @note Files from `server/api`, `server/middleware` and `server/routes` will be automatically registered by Nuxt.
2314
2314
  *
@@ -2381,7 +2381,7 @@ interface ConfigSchema {
2381
2381
  *
2382
2382
  * If set to true, this will type check in development. You can restrict this to build-time type checking by setting it to `build`. Requires to install `typescript` and `vue-tsc` as dev dependencies.
2383
2383
  *
2384
- * @see [Nuxt TypeScript docs](https://nuxt.com/docs/guide/concepts/typescript)
2384
+ * @see [Nuxt TypeScript docs](https://nuxt.com/docs/4.x/guide/concepts/typescript)
2385
2385
  */
2386
2386
  typeCheck: boolean | 'build';
2387
2387
  /**
@@ -2788,7 +2788,7 @@ interface ViteConfig extends Omit<UserConfig, 'publicDir'> {
2788
2788
  /**
2789
2789
  * Directly configuring the `vite.publicDir` option is not supported. Instead, set `dir.public`.
2790
2790
  *
2791
- * You can read more in <https://nuxt.com/docs/api/nuxt-config#public>.
2791
+ * You can read more in <https://nuxt.com/docs/4.x/api/nuxt-config#public>.
2792
2792
  * @deprecated
2793
2793
  */
2794
2794
  publicDir?: never;
package/dist/index.d.ts CHANGED
@@ -531,7 +531,7 @@ interface NuxtHooks {
531
531
  */
532
532
  'app:templates': (app: NuxtApp) => HookResult;
533
533
  /**
534
- * Called after templates are compiled into the [virtual file system](https://nuxt.com/docs/guide/directory-structure/nuxt#virtual-file-system) (vfs).
534
+ * Called after templates are compiled into the [virtual file system](https://nuxt.com/docs/4.x/guide/directory-structure/nuxt) (vfs).
535
535
  * @param app The configured `NuxtApp` object
536
536
  * @returns Promise
537
537
  */
@@ -909,7 +909,7 @@ interface ImportsOptions extends UnimportOptions {
909
909
  autoImport?: boolean;
910
910
  /**
911
911
  * Directories to scan for auto imports.
912
- * @see https://nuxt.com/docs/guide/directory-structure/composables#how-files-are-scanned
912
+ * @see https://nuxt.com/docs/4.x/guide/directory-structure/composables#how-files-are-scanned
913
913
  */
914
914
  dirs?: string[];
915
915
  /**
@@ -937,13 +937,13 @@ interface ConfigSchema {
937
937
  *
938
938
  * Any components in the directories configured here can be used throughout your pages, layouts (and other components) without needing to explicitly import them.
939
939
  *
940
- * @see [`components/` directory documentation](https://nuxt.com/docs/guide/directory-structure/components)
940
+ * @see [`components/` directory documentation](https://nuxt.com/docs/4.x/guide/directory-structure/components)
941
941
  */
942
942
  components: boolean | ComponentsOptions | ComponentsOptions['dirs'];
943
943
  /**
944
944
  * Configure how Nuxt auto-imports composables into your application.
945
945
  *
946
- * @see [Nuxt documentation](https://nuxt.com/docs/guide/directory-structure/composables)
946
+ * @see [Nuxt documentation](https://nuxt.com/docs/4.x/guide/directory-structure/composables)
947
947
  */
948
948
  imports: ImportsOptions;
949
949
  /**
@@ -1110,10 +1110,10 @@ interface ConfigSchema {
1110
1110
  /**
1111
1111
  * Default values for view transitions.
1112
1112
  *
1113
- * This only has an effect when **experimental** support for View Transitions is [enabled in your nuxt.config file](/docs/getting-started/transitions#view-transitions-api-experimental).
1113
+ * This only has an effect when **experimental** support for View Transitions is [enabled in your nuxt.config file](https://nuxt.com/docs/4.x/getting-started/transitions#view-transitions-api-experimental).
1114
1114
  * This can be overridden with `definePageMeta` on an individual page.
1115
1115
  *
1116
- * @see [Nuxt View Transition API docs](https://nuxt.com/docs/getting-started/transitions#view-transitions-api-experimental)
1116
+ * @see [Nuxt View Transition API docs](https://nuxt.com/docs/4.x/getting-started/transitions#view-transitions-api-experimental)
1117
1117
  */
1118
1118
  viewTransition: NuxtAppConfig['viewTransition'];
1119
1119
  /**
@@ -1223,7 +1223,7 @@ interface ConfigSchema {
1223
1223
  * and these plugins do not need to be listed in `nuxt.config` unless you
1224
1224
  * need to customize their order. All plugins are deduplicated by their src path.
1225
1225
  *
1226
- * @see [`plugins/` directory documentation](https://nuxt.com/docs/guide/directory-structure/plugins)
1226
+ * @see [`plugins/` directory documentation](https://nuxt.com/docs/4.x/guide/directory-structure/plugins)
1227
1227
  *
1228
1228
  * @example
1229
1229
  * ```js
@@ -2308,7 +2308,7 @@ interface ConfigSchema {
2308
2308
  * Each handler accepts the following options:
2309
2309
  * - handler: The path to the file defining the handler. - route: The route under which the handler is available. This follows the conventions of [rou3](https://github.com/h3js/rou3). - method: The HTTP method of requests that should be handled. - middleware: Specifies whether it is a middleware handler. - lazy: Specifies whether to use lazy loading to import the handler.
2310
2310
  *
2311
- * @see [`server/` directory documentation](https://nuxt.com/docs/guide/directory-structure/server)
2311
+ * @see [`server/` directory documentation](https://nuxt.com/docs/4.x/guide/directory-structure/server)
2312
2312
  *
2313
2313
  * @note Files from `server/api`, `server/middleware` and `server/routes` will be automatically registered by Nuxt.
2314
2314
  *
@@ -2381,7 +2381,7 @@ interface ConfigSchema {
2381
2381
  *
2382
2382
  * If set to true, this will type check in development. You can restrict this to build-time type checking by setting it to `build`. Requires to install `typescript` and `vue-tsc` as dev dependencies.
2383
2383
  *
2384
- * @see [Nuxt TypeScript docs](https://nuxt.com/docs/guide/concepts/typescript)
2384
+ * @see [Nuxt TypeScript docs](https://nuxt.com/docs/4.x/guide/concepts/typescript)
2385
2385
  */
2386
2386
  typeCheck: boolean | 'build';
2387
2387
  /**
@@ -2788,7 +2788,7 @@ interface ViteConfig extends Omit<UserConfig, 'publicDir'> {
2788
2788
  /**
2789
2789
  * Directly configuring the `vite.publicDir` option is not supported. Instead, set `dir.public`.
2790
2790
  *
2791
- * You can read more in <https://nuxt.com/docs/api/nuxt-config#public>.
2791
+ * You can read more in <https://nuxt.com/docs/4.x/api/nuxt-config#public>.
2792
2792
  * @deprecated
2793
2793
  */
2794
2794
  publicDir?: never;
package/dist/index.mjs CHANGED
@@ -1058,7 +1058,7 @@ const vite = defineResolvers({
1058
1058
  publicDir: {
1059
1059
  $resolve: (val) => {
1060
1060
  if (val) {
1061
- consola.warn("Directly configuring the `vite.publicDir` option is not supported. Instead, set `dir.public`. You can read more in `https://nuxt.com/docs/api/nuxt-config#public`.");
1061
+ consola.warn("Directly configuring the `vite.publicDir` option is not supported. Instead, set `dir.public`. You can read more in `https://nuxt.com/docs/4.x/api/nuxt-config#public`.");
1062
1062
  }
1063
1063
  return false;
1064
1064
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nuxt/schema-nightly",
3
- "version": "4.1.3-29313386.edc02e27",
3
+ "version": "4.1.3-29314777.50febbbb",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/nuxt/nuxt.git",