@nuxt/schema
Advanced tools
Comparing version 3.15.2 to 3.15.3
{ | ||
"name": "@nuxt/schema", | ||
"version": "3.15.2", | ||
"version": "3.15.3", | ||
"repository": { | ||
@@ -43,6 +43,7 @@ "type": "git", | ||
"c12": "2.0.1", | ||
"chokidar": "4.0.3", | ||
"compatx": "0.1.8", | ||
"esbuild-loader": "4.2.2", | ||
"file-loader": "6.2.0", | ||
"h3": "1.13.1", | ||
"h3": "1.14.0", | ||
"hookable": "5.5.3", | ||
@@ -57,5 +58,5 @@ "ignore": "7.0.3", | ||
"unctx": "2.4.1", | ||
"unimport": "3.14.6", | ||
"unimport": "4.0.0", | ||
"untyped": "1.5.2", | ||
"vite": "6.0.7", | ||
"vite": "6.0.11", | ||
"vue": "3.5.13", | ||
@@ -71,3 +72,3 @@ "vue-bundle-renderer": "2.1.1", | ||
"defu": "^6.1.4", | ||
"pathe": "^2.0.1", | ||
"pathe": "^2.0.2", | ||
"std-env": "^3.8.0" | ||
@@ -74,0 +75,0 @@ }, |
@@ -15,3 +15,5 @@ import type { ComponentsOptions } from '../src/types/components' | ||
import type { Options } from 'ignore' | ||
import type { ChokidarOptions } from 'chokidar' | ||
import type { NuxtHooks } from '../src/types/hooks' | ||
import type { H3CorsOptions } from 'h3' | ||
import type { NuxtLinkOptions } from 'nuxt/app' | ||
@@ -690,3 +692,3 @@ import type { FetchOptions } from 'ofetch' | ||
* | ||
* @default "ccc5ae97-dafb-4eec-96a7-6079193880ea" | ||
* @default "48585446-1c7e-4d4d-8f29-efc3422f9cf5" | ||
*/ | ||
@@ -969,6 +971,3 @@ buildId: string, | ||
*/ | ||
chokidar: { | ||
/** @default true */ | ||
ignoreInitial: boolean, | ||
}, | ||
chokidar: ChokidarOptions, | ||
}, | ||
@@ -1082,2 +1081,8 @@ | ||
loadingTemplate: (data: { loading?: string }) => string, | ||
/** | ||
* Set CORS options for the dev server | ||
* | ||
*/ | ||
cors: H3CorsOptions, | ||
}, | ||
@@ -1084,0 +1089,0 @@ |
@@ -376,3 +376,3 @@ { | ||
"test": false, | ||
"buildId": "ccc5ae97-dafb-4eec-96a7-6079193880ea", | ||
"buildId": "48585446-1c7e-4d4d-8f29-efc3422f9cf5", | ||
"modulesDir": [ | ||
@@ -433,3 +433,4 @@ "/<rootDir>/node_modules" | ||
"chokidar": { | ||
"ignoreInitial": true | ||
"ignoreInitial": true, | ||
"ignorePermissionErrors": true | ||
} | ||
@@ -441,3 +442,3 @@ }, | ||
"app": { | ||
"buildId": "ccc5ae97-dafb-4eec-96a7-6079193880ea", | ||
"buildId": "48585446-1c7e-4d4d-8f29-efc3422f9cf5", | ||
"baseURL": "/", | ||
@@ -455,3 +456,8 @@ "buildAssetsDir": "/_nuxt/", | ||
"host": {}, | ||
"url": "http://localhost:3000" | ||
"url": "http://localhost:3000", | ||
"cors": { | ||
"origin": [ | ||
{} | ||
] | ||
} | ||
}, | ||
@@ -484,3 +490,3 @@ "features": { | ||
"app": { | ||
"buildId": "ccc5ae97-dafb-4eec-96a7-6079193880ea", | ||
"buildId": "48585446-1c7e-4d4d-8f29-efc3422f9cf5", | ||
"baseURL": "/", | ||
@@ -487,0 +493,0 @@ "buildAssetsDir": "/_nuxt/", |
@@ -444,3 +444,3 @@ | ||
- **Type**: `string` | ||
- **Default**: `"ccc5ae97-dafb-4eec-96a7-6079193880ea"` | ||
- **Default**: `"48585446-1c7e-4d4d-8f29-efc3422f9cf5"` | ||
@@ -647,2 +647,7 @@ > A unique identifier matching the build. This may contain the hash of the current state of the project. | ||
### `ignorePermissionErrors` | ||
- **Type**: `boolean` | ||
- **Default**: `true` | ||
# `hooks` | ||
@@ -712,2 +717,9 @@ - **Type**: `SrcTypesHooksNuxtHooks` | ||
## `cors` | ||
### `origin` | ||
- **Type**: `array` | ||
- **Default**: `[{}]` | ||
# `future` | ||
@@ -714,0 +726,0 @@ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
607439
13010
31
Updatedpathe@^2.0.2