nuxt-nightly 4.3.0-29434410.5b16a51f → 4.3.0-29435873.41a564d2
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/app/compat/interval.js +1 -1
- package/dist/app/components/error-404.d.vue.ts +6 -6
- package/dist/app/components/error-404.vue +4 -4
- package/dist/app/components/error-404.vue.d.ts +6 -6
- package/dist/app/components/error-500.d.vue.ts +6 -6
- package/dist/app/components/error-500.vue +4 -4
- package/dist/app/components/error-500.vue.d.ts +6 -6
- package/dist/app/components/island-renderer.js +2 -2
- package/dist/app/components/nuxt-error-page.vue +4 -4
- package/dist/app/components/nuxt-island.js +1 -1
- package/dist/app/components/nuxt-stubs.js +2 -2
- package/dist/app/composables/error.d.ts +8 -5
- package/dist/app/composables/error.js +3 -0
- package/dist/app/composables/script-stubs.js +2 -2
- package/dist/app/plugins/router.js +2 -2
- package/dist/components/runtime/server-component.js +0 -1
- package/dist/index.mjs +1 -1
- package/dist/pages/runtime/composables.d.ts +1 -1
- package/dist/pages/runtime/plugins/router.js +4 -4
- package/dist/pages/runtime/validate.js +4 -2
- package/package.json +5 -5
|
@@ -3,7 +3,7 @@ const intervalError = "[nuxt] `setInterval` should not be used on the server. Co
|
|
|
3
3
|
export const setInterval = import.meta.client ? globalThis.setInterval : (() => {
|
|
4
4
|
if (import.meta.dev) {
|
|
5
5
|
throw createError({
|
|
6
|
-
|
|
6
|
+
status: 500,
|
|
7
7
|
message: intervalError
|
|
8
8
|
});
|
|
9
9
|
}
|
|
@@ -5,11 +5,11 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
5
5
|
type: StringConstructor;
|
|
6
6
|
default: string;
|
|
7
7
|
};
|
|
8
|
-
|
|
8
|
+
status: {
|
|
9
9
|
type: NumberConstructor;
|
|
10
10
|
default: number;
|
|
11
11
|
};
|
|
12
|
-
|
|
12
|
+
statusText: {
|
|
13
13
|
type: StringConstructor;
|
|
14
14
|
default: string;
|
|
15
15
|
};
|
|
@@ -26,11 +26,11 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
26
26
|
type: StringConstructor;
|
|
27
27
|
default: string;
|
|
28
28
|
};
|
|
29
|
-
|
|
29
|
+
status: {
|
|
30
30
|
type: NumberConstructor;
|
|
31
31
|
default: number;
|
|
32
32
|
};
|
|
33
|
-
|
|
33
|
+
statusText: {
|
|
34
34
|
type: StringConstructor;
|
|
35
35
|
default: string;
|
|
36
36
|
};
|
|
@@ -44,8 +44,8 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
44
44
|
};
|
|
45
45
|
}>> & Readonly<{}>, {
|
|
46
46
|
appName: string;
|
|
47
|
-
|
|
48
|
-
|
|
47
|
+
status: number;
|
|
48
|
+
statusText: string;
|
|
49
49
|
description: string;
|
|
50
50
|
backHome: string;
|
|
51
51
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
@@ -5,11 +5,11 @@ const props = defineProps({
|
|
|
5
5
|
type: String,
|
|
6
6
|
default: "Nuxt"
|
|
7
7
|
},
|
|
8
|
-
|
|
8
|
+
status: {
|
|
9
9
|
type: Number,
|
|
10
10
|
default: 404
|
|
11
11
|
},
|
|
12
|
-
|
|
12
|
+
statusText: {
|
|
13
13
|
type: String,
|
|
14
14
|
default: "Page not found"
|
|
15
15
|
},
|
|
@@ -23,7 +23,7 @@ const props = defineProps({
|
|
|
23
23
|
}
|
|
24
24
|
});
|
|
25
25
|
useHead({
|
|
26
|
-
title: `${props.
|
|
26
|
+
title: `${props.status} - ${props.statusText} | ${props.appName}`,
|
|
27
27
|
script: [
|
|
28
28
|
{
|
|
29
29
|
innerHTML: `!function(){const e=document.createElement("link").relList;if(!(e&&e.supports&&e.supports("modulepreload"))){for(const e of document.querySelectorAll('link[rel="modulepreload"]'))r(e);new MutationObserver(e=>{for(const o of e)if("childList"===o.type)for(const e of o.addedNodes)"LINK"===e.tagName&&"modulepreload"===e.rel&&r(e)}).observe(document,{childList:!0,subtree:!0})}function r(e){if(e.ep)return;e.ep=!0;const r=function(e){const r={};return e.integrity&&(r.integrity=e.integrity),e.referrerPolicy&&(r.referrerPolicy=e.referrerPolicy),"use-credentials"===e.crossOrigin?r.credentials="include":"anonymous"===e.crossOrigin?r.credentials="omit":r.credentials="same-origin",r}(e);fetch(e.href,r)}}();`
|
|
@@ -38,7 +38,7 @@ useHead({
|
|
|
38
38
|
</script>
|
|
39
39
|
|
|
40
40
|
<template>
|
|
41
|
-
<div class="antialiased bg-white dark:bg-[#020420] dark:text-white font-sans grid min-h-screen overflow-hidden place-content-center text-[#020420] tracking-wide"><div class="max-w-520px text-center"><h1 class="font-semibold leading-none mb-4 sm:text-[110px] tabular-nums text-[80px]" v-text="
|
|
41
|
+
<div class="antialiased bg-white dark:bg-[#020420] dark:text-white font-sans grid min-h-screen overflow-hidden place-content-center text-[#020420] tracking-wide"><div class="max-w-520px text-center"><h1 class="font-semibold leading-none mb-4 sm:text-[110px] tabular-nums text-[80px]" v-text="status" /><h2 class="font-semibold mb-2 sm:text-3xl text-2xl" v-text="statusText" /><p class="mb-4 px-2 text-[#64748B] text-md" v-text="description" /><div class="flex items-center justify-center w-full"><NuxtLink to="/" class="font-medium hover:text-[#00DC82] text-sm underline underline-offset-3">
|
|
42
42
|
{{ backHome }}
|
|
43
43
|
</NuxtLink></div></div></div>
|
|
44
44
|
</template>
|
|
@@ -5,11 +5,11 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
5
5
|
type: StringConstructor;
|
|
6
6
|
default: string;
|
|
7
7
|
};
|
|
8
|
-
|
|
8
|
+
status: {
|
|
9
9
|
type: NumberConstructor;
|
|
10
10
|
default: number;
|
|
11
11
|
};
|
|
12
|
-
|
|
12
|
+
statusText: {
|
|
13
13
|
type: StringConstructor;
|
|
14
14
|
default: string;
|
|
15
15
|
};
|
|
@@ -26,11 +26,11 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
26
26
|
type: StringConstructor;
|
|
27
27
|
default: string;
|
|
28
28
|
};
|
|
29
|
-
|
|
29
|
+
status: {
|
|
30
30
|
type: NumberConstructor;
|
|
31
31
|
default: number;
|
|
32
32
|
};
|
|
33
|
-
|
|
33
|
+
statusText: {
|
|
34
34
|
type: StringConstructor;
|
|
35
35
|
default: string;
|
|
36
36
|
};
|
|
@@ -44,8 +44,8 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
44
44
|
};
|
|
45
45
|
}>> & Readonly<{}>, {
|
|
46
46
|
appName: string;
|
|
47
|
-
|
|
48
|
-
|
|
47
|
+
status: number;
|
|
48
|
+
statusText: string;
|
|
49
49
|
description: string;
|
|
50
50
|
backHome: string;
|
|
51
51
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
@@ -5,11 +5,11 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
5
5
|
type: StringConstructor;
|
|
6
6
|
default: string;
|
|
7
7
|
};
|
|
8
|
-
|
|
8
|
+
status: {
|
|
9
9
|
type: NumberConstructor;
|
|
10
10
|
default: number;
|
|
11
11
|
};
|
|
12
|
-
|
|
12
|
+
statusText: {
|
|
13
13
|
type: StringConstructor;
|
|
14
14
|
default: string;
|
|
15
15
|
};
|
|
@@ -26,11 +26,11 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
26
26
|
type: StringConstructor;
|
|
27
27
|
default: string;
|
|
28
28
|
};
|
|
29
|
-
|
|
29
|
+
status: {
|
|
30
30
|
type: NumberConstructor;
|
|
31
31
|
default: number;
|
|
32
32
|
};
|
|
33
|
-
|
|
33
|
+
statusText: {
|
|
34
34
|
type: StringConstructor;
|
|
35
35
|
default: string;
|
|
36
36
|
};
|
|
@@ -44,8 +44,8 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
44
44
|
};
|
|
45
45
|
}>> & Readonly<{}>, {
|
|
46
46
|
appName: string;
|
|
47
|
-
|
|
48
|
-
|
|
47
|
+
status: number;
|
|
48
|
+
statusText: string;
|
|
49
49
|
description: string;
|
|
50
50
|
refresh: string;
|
|
51
51
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
@@ -5,11 +5,11 @@ const props = defineProps({
|
|
|
5
5
|
type: String,
|
|
6
6
|
default: "Nuxt"
|
|
7
7
|
},
|
|
8
|
-
|
|
8
|
+
status: {
|
|
9
9
|
type: Number,
|
|
10
10
|
default: 500
|
|
11
11
|
},
|
|
12
|
-
|
|
12
|
+
statusText: {
|
|
13
13
|
type: String,
|
|
14
14
|
default: "Internal server error"
|
|
15
15
|
},
|
|
@@ -23,7 +23,7 @@ const props = defineProps({
|
|
|
23
23
|
}
|
|
24
24
|
});
|
|
25
25
|
useHead({
|
|
26
|
-
title: `${props.
|
|
26
|
+
title: `${props.status} - ${props.statusText} | ${props.appName}`,
|
|
27
27
|
script: [
|
|
28
28
|
{
|
|
29
29
|
innerHTML: `!function(){const e=document.createElement("link").relList;if(!(e&&e.supports&&e.supports("modulepreload"))){for(const e of document.querySelectorAll('link[rel="modulepreload"]'))r(e);new MutationObserver(e=>{for(const o of e)if("childList"===o.type)for(const e of o.addedNodes)"LINK"===e.tagName&&"modulepreload"===e.rel&&r(e)}).observe(document,{childList:!0,subtree:!0})}function r(e){if(e.ep)return;e.ep=!0;const r=function(e){const r={};return e.integrity&&(r.integrity=e.integrity),e.referrerPolicy&&(r.referrerPolicy=e.referrerPolicy),"use-credentials"===e.crossOrigin?r.credentials="include":"anonymous"===e.crossOrigin?r.credentials="omit":r.credentials="same-origin",r}(e);fetch(e.href,r)}}();`
|
|
@@ -38,7 +38,7 @@ useHead({
|
|
|
38
38
|
</script>
|
|
39
39
|
|
|
40
40
|
<template>
|
|
41
|
-
<div class="antialiased bg-white dark:bg-[#020420] dark:text-white font-sans grid min-h-screen overflow-hidden place-content-center text-[#020420] tracking-wide"><div class="max-w-520px text-center"><h1 class="font-semibold leading-none mb-4 sm:text-[110px] tabular-nums text-[80px]" v-text="
|
|
41
|
+
<div class="antialiased bg-white dark:bg-[#020420] dark:text-white font-sans grid min-h-screen overflow-hidden place-content-center text-[#020420] tracking-wide"><div class="max-w-520px text-center"><h1 class="font-semibold leading-none mb-4 sm:text-[110px] tabular-nums text-[80px]" v-text="status" /><h2 class="font-semibold mb-2 sm:text-3xl text-2xl" v-text="statusText" /><p class="mb-4 px-2 text-[#64748B] text-md" v-text="description" /></div></div>
|
|
42
42
|
</template>
|
|
43
43
|
|
|
44
44
|
<style scoped>
|
|
@@ -5,11 +5,11 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
5
5
|
type: StringConstructor;
|
|
6
6
|
default: string;
|
|
7
7
|
};
|
|
8
|
-
|
|
8
|
+
status: {
|
|
9
9
|
type: NumberConstructor;
|
|
10
10
|
default: number;
|
|
11
11
|
};
|
|
12
|
-
|
|
12
|
+
statusText: {
|
|
13
13
|
type: StringConstructor;
|
|
14
14
|
default: string;
|
|
15
15
|
};
|
|
@@ -26,11 +26,11 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
26
26
|
type: StringConstructor;
|
|
27
27
|
default: string;
|
|
28
28
|
};
|
|
29
|
-
|
|
29
|
+
status: {
|
|
30
30
|
type: NumberConstructor;
|
|
31
31
|
default: number;
|
|
32
32
|
};
|
|
33
|
-
|
|
33
|
+
statusText: {
|
|
34
34
|
type: StringConstructor;
|
|
35
35
|
default: string;
|
|
36
36
|
};
|
|
@@ -44,8 +44,8 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
44
44
|
};
|
|
45
45
|
}>> & Readonly<{}>, {
|
|
46
46
|
appName: string;
|
|
47
|
-
|
|
48
|
-
|
|
47
|
+
status: number;
|
|
48
|
+
statusText: string;
|
|
49
49
|
description: string;
|
|
50
50
|
refresh: string;
|
|
51
51
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
@@ -16,8 +16,8 @@ export default defineComponent({
|
|
|
16
16
|
const component = islandComponents[props.context.name];
|
|
17
17
|
if (!component) {
|
|
18
18
|
throw createError({
|
|
19
|
-
|
|
20
|
-
|
|
19
|
+
status: 404,
|
|
20
|
+
statusText: `Island component not found: ${props.context.name}`
|
|
21
21
|
});
|
|
22
22
|
}
|
|
23
23
|
onErrorCaptured((e) => {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<ErrorTemplate v-bind="{ statusCode, statusMessage, description, stack }" />
|
|
2
|
+
<ErrorTemplate v-bind="{ status, statusText, statusCode: status, statusMessage: statusText, description, stack }" />
|
|
3
3
|
</template>
|
|
4
4
|
|
|
5
5
|
<script setup>
|
|
@@ -16,9 +16,9 @@ const stacktrace = import.meta.dev && _error.stack ? _error.stack.split("\n").sp
|
|
|
16
16
|
internal: line.includes("node_modules") && !line.includes(".cache") || line.includes("internal") || line.includes("new Promise")
|
|
17
17
|
};
|
|
18
18
|
}).map((i) => `<span class="stack${i.internal ? " internal" : ""}">${escapeHtml(i.text)}</span>`).join("\n") : "";
|
|
19
|
-
const
|
|
20
|
-
const is404 =
|
|
21
|
-
const
|
|
19
|
+
const status = Number(_error.statusCode || 500);
|
|
20
|
+
const is404 = status === 404;
|
|
21
|
+
const statusText = _error.statusMessage ?? (is404 ? "Page Not Found" : "Internal Server Error");
|
|
22
22
|
const description = _error.message || _error.toString();
|
|
23
23
|
const stack = import.meta.dev && !is404 ? _error.description || `<pre>${stacktrace}</pre>` : void 0;
|
|
24
24
|
const _Error404 = defineAsyncComponent(() => import("./error-404.vue"));
|
|
@@ -195,7 +195,7 @@ export default defineComponent({
|
|
|
195
195
|
props: props.props ? JSON.stringify(props.props) : void 0
|
|
196
196
|
}));
|
|
197
197
|
if (!r.ok) {
|
|
198
|
-
throw createError({
|
|
198
|
+
throw createError({ status: r.status, statusText: r.statusText });
|
|
199
199
|
}
|
|
200
200
|
try {
|
|
201
201
|
const result = await r.json();
|
|
@@ -2,8 +2,8 @@ import { createError } from "../composables/error.js";
|
|
|
2
2
|
function renderStubMessage(name) {
|
|
3
3
|
throw createError({
|
|
4
4
|
fatal: true,
|
|
5
|
-
|
|
6
|
-
|
|
5
|
+
status: 500,
|
|
6
|
+
statusText: `${name} is provided by @nuxt/image. Check your console to install it or run 'npx nuxt module add @nuxt/image'`
|
|
7
7
|
});
|
|
8
8
|
}
|
|
9
9
|
export const NuxtImg = {
|
|
@@ -4,8 +4,14 @@ import type { NuxtPayload } from '../nuxt.js';
|
|
|
4
4
|
export declare const NUXT_ERROR_SIGNATURE = "__nuxt_error";
|
|
5
5
|
/** @since 3.0.0 */
|
|
6
6
|
export declare const useError: () => Ref<NuxtPayload["error"]>;
|
|
7
|
-
export interface NuxtError<DataT = unknown> extends H3Error<DataT> {
|
|
7
|
+
export interface NuxtError<DataT = unknown> extends Omit<H3Error<DataT>, 'statusCode' | 'statusMessage'> {
|
|
8
8
|
error?: true;
|
|
9
|
+
status?: number;
|
|
10
|
+
statusText?: string;
|
|
11
|
+
/** @deprecated Use `status` */
|
|
12
|
+
statusCode?: H3Error<DataT>['statusCode'];
|
|
13
|
+
/** @deprecated Use `statusText` */
|
|
14
|
+
statusMessage?: H3Error<DataT>['statusMessage'];
|
|
9
15
|
}
|
|
10
16
|
/** @since 3.0.0 */
|
|
11
17
|
export declare const showError: <DataT = unknown>(error: string | Error | (Partial<NuxtError<DataT>> & {
|
|
@@ -19,7 +25,4 @@ export declare const clearError: (options?: {
|
|
|
19
25
|
/** @since 3.0.0 */
|
|
20
26
|
export declare const isNuxtError: <DataT = unknown>(error: unknown) => error is NuxtError<DataT>;
|
|
21
27
|
/** @since 3.0.0 */
|
|
22
|
-
export declare const createError: <DataT = unknown>(error: string | Error |
|
|
23
|
-
status?: number;
|
|
24
|
-
statusText?: string;
|
|
25
|
-
})) => NuxtError<DataT>;
|
|
28
|
+
export declare const createError: <DataT = unknown>(error: string | Error | Partial<NuxtError<DataT>>) => NuxtError<DataT>;
|
|
@@ -29,6 +29,9 @@ export const clearError = async (options = {}) => {
|
|
|
29
29
|
};
|
|
30
30
|
export const isNuxtError = (error) => !!error && typeof error === "object" && NUXT_ERROR_SIGNATURE in error;
|
|
31
31
|
export const createError = (error) => {
|
|
32
|
+
if (typeof error !== "string" && error.statusText) {
|
|
33
|
+
error.message ??= error.statusText;
|
|
34
|
+
}
|
|
32
35
|
const nuxtError = createH3Error(error);
|
|
33
36
|
Object.defineProperty(nuxtError, NUXT_ERROR_SIGNATURE, {
|
|
34
37
|
value: true,
|
|
@@ -185,8 +185,8 @@ export default defineNuxtPlugin({
|
|
|
185
185
|
if (import.meta.server) {
|
|
186
186
|
if (result === false || result instanceof Error) {
|
|
187
187
|
const error = result || createError({
|
|
188
|
-
|
|
189
|
-
|
|
188
|
+
status: 404,
|
|
189
|
+
statusText: `Page Not Found: ${initialURL}`,
|
|
190
190
|
data: {
|
|
191
191
|
path: initialURL
|
|
192
192
|
}
|
|
@@ -54,7 +54,6 @@ export const createIslandPage = /* @__NO_SIDE_EFFECTS__ */ (name) => {
|
|
|
54
54
|
onError: (e) => {
|
|
55
55
|
if (e.cause && e.cause instanceof Response) {
|
|
56
56
|
throw createError({
|
|
57
|
-
statusCode: e.cause.status,
|
|
58
57
|
statusText: e.cause.statusText,
|
|
59
58
|
status: e.cause.status
|
|
60
59
|
});
|
package/dist/index.mjs
CHANGED
|
@@ -9,7 +9,7 @@ export interface PageMeta {
|
|
|
9
9
|
*
|
|
10
10
|
* Return true if it is valid, or false if not. If another match can't be found,
|
|
11
11
|
* this will mean a 404. You can also directly return an object with
|
|
12
|
-
*
|
|
12
|
+
* status/statusText to respond immediately with an error (other matches
|
|
13
13
|
* will not be checked).
|
|
14
14
|
*/
|
|
15
15
|
validate?: (route: RouteLocationNormalized) => boolean | Partial<NuxtError> | Promise<boolean | Partial<NuxtError>>;
|
|
@@ -171,8 +171,8 @@ const plugin = defineNuxtPlugin({
|
|
|
171
171
|
if (import.meta.server || !nuxtApp.payload.serverRendered && nuxtApp.isHydrating) {
|
|
172
172
|
if (result === false || result instanceof Error) {
|
|
173
173
|
const error2 = result || createError({
|
|
174
|
-
|
|
175
|
-
|
|
174
|
+
status: 404,
|
|
175
|
+
statusText: `Page Not Found: ${initialURL}`
|
|
176
176
|
});
|
|
177
177
|
await nuxtApp.runWithContext(() => showError(error2));
|
|
178
178
|
return false;
|
|
@@ -207,9 +207,9 @@ const plugin = defineNuxtPlugin({
|
|
|
207
207
|
router.afterEach((to) => {
|
|
208
208
|
if (to.matched.length === 0) {
|
|
209
209
|
return nuxtApp.runWithContext(() => showError(createError({
|
|
210
|
-
|
|
210
|
+
status: 404,
|
|
211
211
|
fatal: false,
|
|
212
|
-
|
|
212
|
+
statusText: `Page not found: ${to.fullPath}`,
|
|
213
213
|
data: {
|
|
214
214
|
path: to.fullPath
|
|
215
215
|
}
|
|
@@ -10,8 +10,10 @@ export default defineNuxtRouteMiddleware(async (to, from) => {
|
|
|
10
10
|
}
|
|
11
11
|
const error = createError({
|
|
12
12
|
fatal: import.meta.client,
|
|
13
|
-
|
|
14
|
-
|
|
13
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
|
14
|
+
status: result && (result.status || result.statusCode) || 404,
|
|
15
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
|
16
|
+
statusText: result && (result.statusText || result.statusMessage) || `Page Not Found: ${to.fullPath}`,
|
|
15
17
|
data: {
|
|
16
18
|
path: to.fullPath
|
|
17
19
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nuxt-nightly",
|
|
3
|
-
"version": "4.3.0-
|
|
3
|
+
"version": "4.3.0-29435873.41a564d2",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+https://github.com/nuxt/nuxt.git",
|
|
@@ -67,11 +67,11 @@
|
|
|
67
67
|
"@dxup/nuxt": "^0.3.2",
|
|
68
68
|
"@nuxt/cli": "npm:@nuxt/cli-nightly@latest",
|
|
69
69
|
"@nuxt/devtools": "^3.1.1",
|
|
70
|
-
"@nuxt/kit": "npm:@nuxt/kit-nightly@4.3.0-
|
|
71
|
-
"@nuxt/nitro-server": "npm:@nuxt/nitro-server-nightly@4.3.0-
|
|
72
|
-
"@nuxt/schema": "npm:@nuxt/schema-nightly@4.3.0-
|
|
70
|
+
"@nuxt/kit": "npm:@nuxt/kit-nightly@4.3.0-29435873.41a564d2",
|
|
71
|
+
"@nuxt/nitro-server": "npm:@nuxt/nitro-server-nightly@4.3.0-29435873.41a564d2",
|
|
72
|
+
"@nuxt/schema": "npm:@nuxt/schema-nightly@4.3.0-29435873.41a564d2",
|
|
73
73
|
"@nuxt/telemetry": "^2.6.6",
|
|
74
|
-
"@nuxt/vite-builder": "npm:@nuxt/vite-builder-nightly@4.3.0-
|
|
74
|
+
"@nuxt/vite-builder": "npm:@nuxt/vite-builder-nightly@4.3.0-29435873.41a564d2",
|
|
75
75
|
"@unhead/vue": "^2.0.19",
|
|
76
76
|
"@vue/shared": "^3.5.25",
|
|
77
77
|
"c12": "^3.3.2",
|