@nuxt/schema-nightly 4.1.0-29272761.6c974f0b → 4.1.0-29272968.ece1216a
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/dist/index.d.mts +4 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.mjs +2 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -2224,6 +2224,10 @@ interface ConfigSchema {
|
|
|
2224
2224
|
* For `useAsyncData` and `useFetch`, whether `pending` should be `true` when data has not yet started to be fetched.
|
|
2225
2225
|
*/
|
|
2226
2226
|
pendingWhenIdle: boolean;
|
|
2227
|
+
/**
|
|
2228
|
+
* Whether to improve chunk stability by using an import map to resolve the entry chunk of the bundle.
|
|
2229
|
+
*/
|
|
2230
|
+
entryImportMap: boolean;
|
|
2227
2231
|
};
|
|
2228
2232
|
/**
|
|
2229
2233
|
*
|
package/dist/index.d.ts
CHANGED
|
@@ -2224,6 +2224,10 @@ interface ConfigSchema {
|
|
|
2224
2224
|
* For `useAsyncData` and `useFetch`, whether `pending` should be `true` when data has not yet started to be fetched.
|
|
2225
2225
|
*/
|
|
2226
2226
|
pendingWhenIdle: boolean;
|
|
2227
|
+
/**
|
|
2228
|
+
* Whether to improve chunk stability by using an import map to resolve the entry chunk of the bundle.
|
|
2229
|
+
*/
|
|
2230
|
+
entryImportMap: boolean;
|
|
2227
2231
|
};
|
|
2228
2232
|
/**
|
|
2229
2233
|
*
|
package/dist/index.mjs
CHANGED