@nuxt/schema-nightly 4.3.0-29465977.c4f46c64 → 4.3.0-29466366.fa21bb17
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/builder-env.d.mts +272 -268
- package/dist/builder-env.mjs +3 -1
- package/dist/index.d.mts +2685 -2688
- package/dist/index.mjs +973 -1284
- package/package.json +6 -13
- package/dist/builder-env.d.ts +0 -297
- package/dist/index.d.ts +0 -2823
package/dist/index.mjs
CHANGED
|
@@ -1,1324 +1,1013 @@
|
|
|
1
|
-
import process from
|
|
2
|
-
import { defu } from
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import { existsSync } from
|
|
6
|
-
import { readdir } from
|
|
7
|
-
import { randomUUID } from
|
|
8
|
-
import { findWorkspaceDir } from
|
|
9
|
-
import { escapeHtml } from
|
|
1
|
+
import process from "node:process";
|
|
2
|
+
import { defu } from "defu";
|
|
3
|
+
import { join, relative, resolve } from "pathe";
|
|
4
|
+
import { isDebug, isDevelopment, isTest } from "std-env";
|
|
5
|
+
import { existsSync } from "node:fs";
|
|
6
|
+
import { readdir } from "node:fs/promises";
|
|
7
|
+
import { randomUUID } from "node:crypto";
|
|
8
|
+
import { findWorkspaceDir } from "pkg-types";
|
|
9
|
+
import { escapeHtml } from "@vue/shared";
|
|
10
10
|
|
|
11
|
+
//#region src/utils/definition.ts
|
|
11
12
|
function defineResolvers(config) {
|
|
12
|
-
|
|
13
|
+
return config;
|
|
13
14
|
}
|
|
14
15
|
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
devtools: {}
|
|
16
|
+
//#endregion
|
|
17
|
+
//#region src/config/adhoc.ts
|
|
18
|
+
var adhoc_default = defineResolvers({
|
|
19
|
+
components: { $resolve: (val) => {
|
|
20
|
+
if (Array.isArray(val)) return { dirs: val };
|
|
21
|
+
if (val === false) return { dirs: [] };
|
|
22
|
+
return {
|
|
23
|
+
dirs: [{
|
|
24
|
+
path: "~/components/global",
|
|
25
|
+
global: true
|
|
26
|
+
}, "~/components"],
|
|
27
|
+
...typeof val === "object" ? val : {}
|
|
28
|
+
};
|
|
29
|
+
} },
|
|
30
|
+
imports: {
|
|
31
|
+
global: false,
|
|
32
|
+
scan: true,
|
|
33
|
+
dirs: []
|
|
34
|
+
},
|
|
35
|
+
pages: void 0,
|
|
36
|
+
telemetry: void 0,
|
|
37
|
+
devtools: {}
|
|
38
38
|
});
|
|
39
39
|
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
},
|
|
139
|
-
teleportAttrs: {
|
|
140
|
-
$resolve: async (val, get) => {
|
|
141
|
-
const teleportId = await get("app.teleportId");
|
|
142
|
-
return {
|
|
143
|
-
id: teleportId === false ? void 0 : teleportId || "teleports",
|
|
144
|
-
...typeof val === "object" ? val : {}
|
|
145
|
-
};
|
|
146
|
-
}
|
|
147
|
-
},
|
|
148
|
-
spaLoaderTag: {
|
|
149
|
-
$resolve: (val) => val && typeof val === "string" ? val : "div"
|
|
150
|
-
},
|
|
151
|
-
spaLoaderAttrs: {
|
|
152
|
-
id: "__nuxt-loader"
|
|
153
|
-
}
|
|
154
|
-
},
|
|
155
|
-
spaLoadingTemplate: {
|
|
156
|
-
$resolve: async (val, get) => {
|
|
157
|
-
if (typeof val === "string") {
|
|
158
|
-
return resolve(await get("srcDir"), val);
|
|
159
|
-
}
|
|
160
|
-
if (typeof val === "boolean") {
|
|
161
|
-
return val;
|
|
162
|
-
}
|
|
163
|
-
return null;
|
|
164
|
-
}
|
|
165
|
-
},
|
|
166
|
-
plugins: [],
|
|
167
|
-
css: {
|
|
168
|
-
$resolve: (val) => {
|
|
169
|
-
if (!Array.isArray(val)) {
|
|
170
|
-
return [];
|
|
171
|
-
}
|
|
172
|
-
const css = [];
|
|
173
|
-
for (const item of val) {
|
|
174
|
-
if (typeof item === "string") {
|
|
175
|
-
css.push(item);
|
|
176
|
-
}
|
|
177
|
-
}
|
|
178
|
-
return css;
|
|
179
|
-
}
|
|
180
|
-
},
|
|
181
|
-
unhead: {
|
|
182
|
-
legacy: false,
|
|
183
|
-
renderSSRHeadOptions: {
|
|
184
|
-
$resolve: (val) => ({
|
|
185
|
-
omitLineBreaks: true,
|
|
186
|
-
...typeof val === "object" ? val : {}
|
|
187
|
-
})
|
|
188
|
-
}
|
|
189
|
-
}
|
|
40
|
+
//#endregion
|
|
41
|
+
//#region src/config/app.ts
|
|
42
|
+
var app_default = defineResolvers({
|
|
43
|
+
vue: {
|
|
44
|
+
transformAssetUrls: {
|
|
45
|
+
video: ["src", "poster"],
|
|
46
|
+
source: ["src"],
|
|
47
|
+
img: ["src"],
|
|
48
|
+
image: ["xlink:href", "href"],
|
|
49
|
+
use: ["xlink:href", "href"]
|
|
50
|
+
},
|
|
51
|
+
compilerOptions: {},
|
|
52
|
+
runtimeCompiler: { $resolve: (val) => {
|
|
53
|
+
return typeof val === "boolean" ? val : false;
|
|
54
|
+
} },
|
|
55
|
+
propsDestructure: true,
|
|
56
|
+
config: {}
|
|
57
|
+
},
|
|
58
|
+
app: {
|
|
59
|
+
baseURL: { $resolve: (val) => {
|
|
60
|
+
if (typeof val === "string") return val;
|
|
61
|
+
return process.env.NUXT_APP_BASE_URL || "/";
|
|
62
|
+
} },
|
|
63
|
+
buildAssetsDir: { $resolve: (val) => {
|
|
64
|
+
if (typeof val === "string") return val;
|
|
65
|
+
return process.env.NUXT_APP_BUILD_ASSETS_DIR || "/_nuxt/";
|
|
66
|
+
} },
|
|
67
|
+
cdnURL: { $resolve: async (val, get) => {
|
|
68
|
+
if (await get("dev")) return "";
|
|
69
|
+
return process.env.NUXT_APP_CDN_URL || (typeof val === "string" ? val : "");
|
|
70
|
+
} },
|
|
71
|
+
head: { $resolve: (_val) => {
|
|
72
|
+
const resolved = defu(_val && typeof _val === "object" ? _val : {}, {
|
|
73
|
+
meta: [],
|
|
74
|
+
link: [],
|
|
75
|
+
style: [],
|
|
76
|
+
script: [],
|
|
77
|
+
noscript: []
|
|
78
|
+
});
|
|
79
|
+
if (!resolved.meta.find((m) => m?.charset)?.charset) resolved.meta.unshift({ charset: resolved.charset || "utf-8" });
|
|
80
|
+
if (!resolved.meta.find((m) => m?.name === "viewport")?.content) resolved.meta.unshift({
|
|
81
|
+
name: "viewport",
|
|
82
|
+
content: resolved.viewport || "width=device-width, initial-scale=1"
|
|
83
|
+
});
|
|
84
|
+
resolved.meta = resolved.meta.filter(Boolean);
|
|
85
|
+
resolved.link = resolved.link.filter(Boolean);
|
|
86
|
+
resolved.style = resolved.style.filter(Boolean);
|
|
87
|
+
resolved.script = resolved.script.filter(Boolean);
|
|
88
|
+
resolved.noscript = resolved.noscript.filter(Boolean);
|
|
89
|
+
return resolved;
|
|
90
|
+
} },
|
|
91
|
+
layoutTransition: false,
|
|
92
|
+
pageTransition: false,
|
|
93
|
+
viewTransition: { $resolve: async (val, get) => {
|
|
94
|
+
if (val === "always" || typeof val === "boolean") return val;
|
|
95
|
+
return await get("experimental").then((e) => e.viewTransition) ?? false;
|
|
96
|
+
} },
|
|
97
|
+
keepalive: false,
|
|
98
|
+
rootId: { $resolve: (val) => val === false ? false : val && typeof val === "string" ? val : "__nuxt" },
|
|
99
|
+
rootTag: { $resolve: (val) => val && typeof val === "string" ? val : "div" },
|
|
100
|
+
rootAttrs: { $resolve: async (val, get) => {
|
|
101
|
+
const rootId = await get("app.rootId");
|
|
102
|
+
return {
|
|
103
|
+
id: rootId === false ? void 0 : rootId || "__nuxt",
|
|
104
|
+
...typeof val === "object" ? val : {}
|
|
105
|
+
};
|
|
106
|
+
} },
|
|
107
|
+
teleportTag: { $resolve: (val) => val && typeof val === "string" ? val : "div" },
|
|
108
|
+
teleportId: { $resolve: (val) => val === false ? false : val && typeof val === "string" ? val : "teleports" },
|
|
109
|
+
teleportAttrs: { $resolve: async (val, get) => {
|
|
110
|
+
const teleportId = await get("app.teleportId");
|
|
111
|
+
return {
|
|
112
|
+
id: teleportId === false ? void 0 : teleportId || "teleports",
|
|
113
|
+
...typeof val === "object" ? val : {}
|
|
114
|
+
};
|
|
115
|
+
} },
|
|
116
|
+
spaLoaderTag: { $resolve: (val) => val && typeof val === "string" ? val : "div" },
|
|
117
|
+
spaLoaderAttrs: { id: "__nuxt-loader" }
|
|
118
|
+
},
|
|
119
|
+
spaLoadingTemplate: { $resolve: async (val, get) => {
|
|
120
|
+
if (typeof val === "string") return resolve(await get("srcDir"), val);
|
|
121
|
+
if (typeof val === "boolean") return val;
|
|
122
|
+
return null;
|
|
123
|
+
} },
|
|
124
|
+
plugins: [],
|
|
125
|
+
css: { $resolve: (val) => {
|
|
126
|
+
if (!Array.isArray(val)) return [];
|
|
127
|
+
const css = [];
|
|
128
|
+
for (const item of val) if (typeof item === "string") css.push(item);
|
|
129
|
+
return css;
|
|
130
|
+
} },
|
|
131
|
+
unhead: {
|
|
132
|
+
legacy: false,
|
|
133
|
+
renderSSRHeadOptions: { $resolve: (val) => ({
|
|
134
|
+
omitLineBreaks: true,
|
|
135
|
+
...typeof val === "object" ? val : {}
|
|
136
|
+
}) }
|
|
137
|
+
}
|
|
190
138
|
});
|
|
191
139
|
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
140
|
+
//#endregion
|
|
141
|
+
//#region src/config/build.ts
|
|
142
|
+
var build_default = defineResolvers({
|
|
143
|
+
builder: { $resolve: (val) => {
|
|
144
|
+
if (val && typeof val === "object" && "bundle" in val) return val;
|
|
145
|
+
const map = {
|
|
146
|
+
rspack: "@nuxt/rspack-builder",
|
|
147
|
+
vite: "@nuxt/vite-builder",
|
|
148
|
+
webpack: "@nuxt/webpack-builder"
|
|
149
|
+
};
|
|
150
|
+
if (typeof val === "string" && val in map) return map[val];
|
|
151
|
+
return map.vite;
|
|
152
|
+
} },
|
|
153
|
+
sourcemap: { $resolve: async (val, get) => {
|
|
154
|
+
if (typeof val === "boolean") return {
|
|
155
|
+
server: val,
|
|
156
|
+
client: val
|
|
157
|
+
};
|
|
158
|
+
return {
|
|
159
|
+
server: true,
|
|
160
|
+
client: await get("dev"),
|
|
161
|
+
...typeof val === "object" ? val : {}
|
|
162
|
+
};
|
|
163
|
+
} },
|
|
164
|
+
logLevel: { $resolve: (val) => {
|
|
165
|
+
if (val && typeof val === "string" && ![
|
|
166
|
+
"silent",
|
|
167
|
+
"info",
|
|
168
|
+
"verbose"
|
|
169
|
+
].includes(val)) console.warn(`Invalid \`logLevel\` option: \`${val}\`. Must be one of: \`silent\`, \`info\`, \`verbose\`.`);
|
|
170
|
+
return val && typeof val === "string" ? val : isTest ? "silent" : "info";
|
|
171
|
+
} },
|
|
172
|
+
build: {
|
|
173
|
+
transpile: { $resolve: (val) => {
|
|
174
|
+
const transpile = [];
|
|
175
|
+
if (Array.isArray(val)) for (const pattern of val) {
|
|
176
|
+
if (!pattern) continue;
|
|
177
|
+
if (typeof pattern === "string" || typeof pattern === "function" || pattern instanceof RegExp) transpile.push(pattern);
|
|
178
|
+
}
|
|
179
|
+
return transpile;
|
|
180
|
+
} },
|
|
181
|
+
templates: [],
|
|
182
|
+
analyze: { $resolve: async (val, get) => {
|
|
183
|
+
const [rootDir, analyzeDir] = await Promise.all([get("rootDir"), get("analyzeDir")]);
|
|
184
|
+
return {
|
|
185
|
+
template: "treemap",
|
|
186
|
+
projectRoot: rootDir,
|
|
187
|
+
filename: join(analyzeDir, "{name}.html"),
|
|
188
|
+
...typeof val === "boolean" ? { enabled: val } : typeof val === "object" ? val : {}
|
|
189
|
+
};
|
|
190
|
+
} }
|
|
191
|
+
},
|
|
192
|
+
optimization: {
|
|
193
|
+
keyedComposables: { $resolve: (val) => [
|
|
194
|
+
{
|
|
195
|
+
name: "callOnce",
|
|
196
|
+
argumentLength: 3,
|
|
197
|
+
source: "#app/composables/once"
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
name: "defineNuxtComponent",
|
|
201
|
+
argumentLength: 2,
|
|
202
|
+
source: "#app/composables/component"
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
name: "useState",
|
|
206
|
+
argumentLength: 2,
|
|
207
|
+
source: "#app/composables/state"
|
|
208
|
+
},
|
|
209
|
+
{
|
|
210
|
+
name: "useFetch",
|
|
211
|
+
argumentLength: 3,
|
|
212
|
+
source: "#app/composables/fetch"
|
|
213
|
+
},
|
|
214
|
+
{
|
|
215
|
+
name: "useAsyncData",
|
|
216
|
+
argumentLength: 3,
|
|
217
|
+
source: "#app/composables/asyncData"
|
|
218
|
+
},
|
|
219
|
+
{
|
|
220
|
+
name: "useLazyAsyncData",
|
|
221
|
+
argumentLength: 3,
|
|
222
|
+
source: "#app/composables/asyncData"
|
|
223
|
+
},
|
|
224
|
+
{
|
|
225
|
+
name: "useLazyFetch",
|
|
226
|
+
argumentLength: 3,
|
|
227
|
+
source: "#app/composables/fetch"
|
|
228
|
+
},
|
|
229
|
+
...Array.isArray(val) ? val : []
|
|
230
|
+
].filter(Boolean) },
|
|
231
|
+
treeShake: { composables: {
|
|
232
|
+
server: { $resolve: async (val, get) => defu(typeof val === "object" ? val || {} : {}, await get("dev") ? {} : {
|
|
233
|
+
"vue": [
|
|
234
|
+
"onMounted",
|
|
235
|
+
"onUpdated",
|
|
236
|
+
"onUnmounted",
|
|
237
|
+
"onBeforeMount",
|
|
238
|
+
"onBeforeUpdate",
|
|
239
|
+
"onBeforeUnmount",
|
|
240
|
+
"onRenderTracked",
|
|
241
|
+
"onRenderTriggered",
|
|
242
|
+
"onActivated",
|
|
243
|
+
"onDeactivated"
|
|
244
|
+
],
|
|
245
|
+
"#app": ["definePayloadReviver", "definePageMeta"]
|
|
246
|
+
}) },
|
|
247
|
+
client: { $resolve: async (val, get) => defu(typeof val === "object" ? val || {} : {}, await get("dev") ? {} : {
|
|
248
|
+
"vue": [
|
|
249
|
+
"onRenderTracked",
|
|
250
|
+
"onRenderTriggered",
|
|
251
|
+
"onServerPrefetch"
|
|
252
|
+
],
|
|
253
|
+
"#app": [
|
|
254
|
+
"definePayloadReducer",
|
|
255
|
+
"definePageMeta",
|
|
256
|
+
"onPrehydrate"
|
|
257
|
+
]
|
|
258
|
+
}) }
|
|
259
|
+
} },
|
|
260
|
+
asyncTransforms: {
|
|
261
|
+
asyncFunctions: ["defineNuxtPlugin", "defineNuxtRouteMiddleware"],
|
|
262
|
+
objectDefinitions: {
|
|
263
|
+
defineNuxtComponent: ["asyncData", "setup"],
|
|
264
|
+
defineNuxtPlugin: ["setup"],
|
|
265
|
+
definePageMeta: ["middleware", "validate"]
|
|
266
|
+
}
|
|
267
|
+
}
|
|
268
|
+
}
|
|
303
269
|
});
|
|
304
270
|
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
}
|
|
503
|
-
},
|
|
504
|
-
ignoreOptions: void 0,
|
|
505
|
-
ignorePrefix: {
|
|
506
|
-
$resolve: (val) => val && typeof val === "string" ? val : "-"
|
|
507
|
-
},
|
|
508
|
-
ignore: {
|
|
509
|
-
$resolve: async (val, get) => {
|
|
510
|
-
const [rootDir, ignorePrefix, analyzeDir, buildDir] = await Promise.all([get("rootDir"), get("ignorePrefix"), get("analyzeDir"), get("buildDir")]);
|
|
511
|
-
const ignore = /* @__PURE__ */ new Set([
|
|
512
|
-
"**/*.stories.{js,cts,mts,ts,jsx,tsx}",
|
|
513
|
-
// ignore storybook files
|
|
514
|
-
"**/*.{spec,test}.{js,cts,mts,ts,jsx,tsx}",
|
|
515
|
-
// ignore tests
|
|
516
|
-
"**/*.d.{cts,mts,ts}",
|
|
517
|
-
// ignore type declarations
|
|
518
|
-
"**/*.d.vue.{cts,mts,ts}",
|
|
519
|
-
"**/.{pnpm-store,vercel,netlify,output,git,cache,data}",
|
|
520
|
-
"**/*.sock",
|
|
521
|
-
relative(rootDir, analyzeDir),
|
|
522
|
-
relative(rootDir, buildDir)
|
|
523
|
-
]);
|
|
524
|
-
if (ignorePrefix) {
|
|
525
|
-
ignore.add(`**/${ignorePrefix}*.*`);
|
|
526
|
-
}
|
|
527
|
-
if (Array.isArray(val)) {
|
|
528
|
-
for (const pattern of val) {
|
|
529
|
-
if (pattern) {
|
|
530
|
-
ignore.add(pattern);
|
|
531
|
-
}
|
|
532
|
-
}
|
|
533
|
-
}
|
|
534
|
-
return [...ignore];
|
|
535
|
-
}
|
|
536
|
-
},
|
|
537
|
-
watch: {
|
|
538
|
-
$resolve: (val) => {
|
|
539
|
-
if (Array.isArray(val)) {
|
|
540
|
-
return val.filter((b) => typeof b === "string" || b instanceof RegExp);
|
|
541
|
-
}
|
|
542
|
-
return [];
|
|
543
|
-
}
|
|
544
|
-
},
|
|
545
|
-
watchers: {
|
|
546
|
-
rewatchOnRawEvents: void 0,
|
|
547
|
-
webpack: {
|
|
548
|
-
aggregateTimeout: 1e3
|
|
549
|
-
},
|
|
550
|
-
chokidar: {
|
|
551
|
-
ignoreInitial: true,
|
|
552
|
-
ignorePermissionErrors: true
|
|
553
|
-
}
|
|
554
|
-
},
|
|
555
|
-
hooks: void 0,
|
|
556
|
-
runtimeConfig: {
|
|
557
|
-
$resolve: async (_val, get) => {
|
|
558
|
-
const val = _val && typeof _val === "object" ? _val : {};
|
|
559
|
-
const [app, buildId] = await Promise.all([get("app"), get("buildId")]);
|
|
560
|
-
provideFallbackValues(val);
|
|
561
|
-
return defu(val, {
|
|
562
|
-
public: {},
|
|
563
|
-
app: {
|
|
564
|
-
buildId,
|
|
565
|
-
baseURL: app.baseURL,
|
|
566
|
-
buildAssetsDir: app.buildAssetsDir,
|
|
567
|
-
cdnURL: app.cdnURL
|
|
568
|
-
}
|
|
569
|
-
});
|
|
570
|
-
}
|
|
571
|
-
},
|
|
572
|
-
appConfig: {
|
|
573
|
-
nuxt: {}
|
|
574
|
-
},
|
|
575
|
-
$schema: {}
|
|
271
|
+
//#endregion
|
|
272
|
+
//#region src/config/common.ts
|
|
273
|
+
var common_default = defineResolvers({
|
|
274
|
+
extends: void 0,
|
|
275
|
+
compatibilityDate: void 0,
|
|
276
|
+
theme: void 0,
|
|
277
|
+
rootDir: { $resolve: (val) => typeof val === "string" ? resolve(val) : process.cwd() },
|
|
278
|
+
workspaceDir: { $resolve: async (val, get) => {
|
|
279
|
+
const rootDir = await get("rootDir");
|
|
280
|
+
return val && typeof val === "string" ? resolve(rootDir, val) : await findWorkspaceDir(rootDir, {
|
|
281
|
+
gitConfig: "closest",
|
|
282
|
+
try: true
|
|
283
|
+
}).catch(() => rootDir);
|
|
284
|
+
} },
|
|
285
|
+
srcDir: { $resolve: async (val, get) => {
|
|
286
|
+
if (val && typeof val === "string") return resolve(await get("rootDir"), val);
|
|
287
|
+
const rootDir = await get("rootDir");
|
|
288
|
+
const srcDir = resolve(rootDir, "app");
|
|
289
|
+
if (!existsSync(srcDir)) return rootDir;
|
|
290
|
+
const srcDirFiles = /* @__PURE__ */ new Set();
|
|
291
|
+
const files = await readdir(srcDir).catch(() => []);
|
|
292
|
+
for (const file of files) if (file !== "spa-loading-template.html" && !file.startsWith("router.options")) srcDirFiles.add(file);
|
|
293
|
+
if (srcDirFiles.size === 0) {
|
|
294
|
+
for (const file of ["app.vue", "App.vue"]) if (existsSync(resolve(rootDir, file))) return rootDir;
|
|
295
|
+
const dirs = await Promise.all([
|
|
296
|
+
"assets",
|
|
297
|
+
"layouts",
|
|
298
|
+
"middleware",
|
|
299
|
+
"pages",
|
|
300
|
+
"plugins"
|
|
301
|
+
].map((key) => get(`dir.${key}`)));
|
|
302
|
+
for (const dir of dirs) if (existsSync(resolve(rootDir, dir))) return rootDir;
|
|
303
|
+
}
|
|
304
|
+
return srcDir;
|
|
305
|
+
} },
|
|
306
|
+
serverDir: { $resolve: async (val, get) => {
|
|
307
|
+
return resolve(await get("rootDir"), val && typeof val === "string" ? val : "server");
|
|
308
|
+
} },
|
|
309
|
+
buildDir: { $resolve: async (val, get) => {
|
|
310
|
+
return resolve(await get("rootDir"), val && typeof val === "string" ? val : ".nuxt");
|
|
311
|
+
} },
|
|
312
|
+
appId: { $resolve: (val) => val && typeof val === "string" ? val : "nuxt-app" },
|
|
313
|
+
buildId: { $resolve: async (val, get) => {
|
|
314
|
+
if (typeof val === "string") return val;
|
|
315
|
+
const [isDev, isTest$1] = await Promise.all([get("dev"), get("test")]);
|
|
316
|
+
return isDev ? "dev" : isTest$1 ? "test" : randomUUID();
|
|
317
|
+
} },
|
|
318
|
+
modulesDir: {
|
|
319
|
+
$default: ["node_modules"],
|
|
320
|
+
$resolve: async (val, get) => {
|
|
321
|
+
const rootDir = await get("rootDir");
|
|
322
|
+
const modulesDir = new Set([resolve(rootDir, "node_modules")]);
|
|
323
|
+
if (Array.isArray(val)) {
|
|
324
|
+
for (const dir of val) if (dir && typeof dir === "string") modulesDir.add(resolve(rootDir, dir));
|
|
325
|
+
}
|
|
326
|
+
return [...modulesDir];
|
|
327
|
+
}
|
|
328
|
+
},
|
|
329
|
+
analyzeDir: { $resolve: async (val, get) => val && typeof val === "string" ? resolve(await get("rootDir"), val) : resolve(await get("buildDir"), "analyze") },
|
|
330
|
+
dev: { $resolve: (val) => typeof val === "boolean" ? val : Boolean(isDevelopment) },
|
|
331
|
+
test: { $resolve: (val) => typeof val === "boolean" ? val : Boolean(isTest) },
|
|
332
|
+
debug: { $resolve: (val) => {
|
|
333
|
+
val ??= isDebug;
|
|
334
|
+
if (val === true) return {
|
|
335
|
+
templates: true,
|
|
336
|
+
modules: true,
|
|
337
|
+
watchers: true,
|
|
338
|
+
hooks: {
|
|
339
|
+
client: true,
|
|
340
|
+
server: true
|
|
341
|
+
},
|
|
342
|
+
nitro: true,
|
|
343
|
+
router: true,
|
|
344
|
+
hydration: true
|
|
345
|
+
};
|
|
346
|
+
if (val && typeof val === "object") return val;
|
|
347
|
+
return false;
|
|
348
|
+
} },
|
|
349
|
+
ssr: { $resolve: (val) => typeof val === "boolean" ? val : true },
|
|
350
|
+
modules: { $resolve: (val) => {
|
|
351
|
+
const modules = [];
|
|
352
|
+
if (Array.isArray(val)) for (const mod of val) {
|
|
353
|
+
if (!mod) continue;
|
|
354
|
+
if (typeof mod === "string" || typeof mod === "function" || Array.isArray(mod) && mod[0]) modules.push(mod);
|
|
355
|
+
}
|
|
356
|
+
return modules;
|
|
357
|
+
} },
|
|
358
|
+
dir: {
|
|
359
|
+
app: { $resolve: async (val, get) => {
|
|
360
|
+
const [srcDir, rootDir] = await Promise.all([get("srcDir"), get("rootDir")]);
|
|
361
|
+
return resolve(await get("srcDir"), val && typeof val === "string" ? val : srcDir === rootDir ? "app" : ".");
|
|
362
|
+
} },
|
|
363
|
+
assets: "assets",
|
|
364
|
+
layouts: "layouts",
|
|
365
|
+
middleware: "middleware",
|
|
366
|
+
modules: { $resolve: async (val, get) => {
|
|
367
|
+
return resolve(await get("rootDir"), val && typeof val === "string" ? val : "modules");
|
|
368
|
+
} },
|
|
369
|
+
pages: "pages",
|
|
370
|
+
plugins: "plugins",
|
|
371
|
+
shared: { $resolve: (val) => {
|
|
372
|
+
return val && typeof val === "string" ? val : "shared";
|
|
373
|
+
} },
|
|
374
|
+
public: { $resolve: async (val, get) => {
|
|
375
|
+
return resolve(await get("rootDir"), val && typeof val === "string" ? val : "public");
|
|
376
|
+
} }
|
|
377
|
+
},
|
|
378
|
+
extensions: { $resolve: (val) => {
|
|
379
|
+
const extensions = [
|
|
380
|
+
".js",
|
|
381
|
+
".jsx",
|
|
382
|
+
".mjs",
|
|
383
|
+
".ts",
|
|
384
|
+
".tsx",
|
|
385
|
+
".vue"
|
|
386
|
+
];
|
|
387
|
+
if (Array.isArray(val)) {
|
|
388
|
+
for (const item of val) if (item && typeof item === "string") extensions.push(item);
|
|
389
|
+
}
|
|
390
|
+
return extensions;
|
|
391
|
+
} },
|
|
392
|
+
alias: { $resolve: async (val, get) => {
|
|
393
|
+
const [srcDir, rootDir, buildDir, sharedDir, serverDir] = await Promise.all([
|
|
394
|
+
get("srcDir"),
|
|
395
|
+
get("rootDir"),
|
|
396
|
+
get("buildDir"),
|
|
397
|
+
get("dir.shared"),
|
|
398
|
+
get("serverDir")
|
|
399
|
+
]);
|
|
400
|
+
const srcWithTrailingSlash = withTrailingSlash(srcDir);
|
|
401
|
+
const rootWithTrailingSlash = withTrailingSlash(rootDir);
|
|
402
|
+
return {
|
|
403
|
+
"~": srcWithTrailingSlash,
|
|
404
|
+
"@": srcWithTrailingSlash,
|
|
405
|
+
"~~": rootWithTrailingSlash,
|
|
406
|
+
"@@": rootWithTrailingSlash,
|
|
407
|
+
"#shared": withTrailingSlash(resolve(rootDir, sharedDir)),
|
|
408
|
+
"#server": withTrailingSlash(serverDir),
|
|
409
|
+
"#build": withTrailingSlash(buildDir),
|
|
410
|
+
"#internal/nuxt/paths": resolve(buildDir, "paths.mjs"),
|
|
411
|
+
...typeof val === "object" ? val : {}
|
|
412
|
+
};
|
|
413
|
+
} },
|
|
414
|
+
ignoreOptions: void 0,
|
|
415
|
+
ignorePrefix: { $resolve: (val) => val && typeof val === "string" ? val : "-" },
|
|
416
|
+
ignore: { $resolve: async (val, get) => {
|
|
417
|
+
const [rootDir, ignorePrefix, analyzeDir, buildDir] = await Promise.all([
|
|
418
|
+
get("rootDir"),
|
|
419
|
+
get("ignorePrefix"),
|
|
420
|
+
get("analyzeDir"),
|
|
421
|
+
get("buildDir")
|
|
422
|
+
]);
|
|
423
|
+
const ignore = new Set([
|
|
424
|
+
"**/*.stories.{js,cts,mts,ts,jsx,tsx}",
|
|
425
|
+
"**/*.{spec,test}.{js,cts,mts,ts,jsx,tsx}",
|
|
426
|
+
"**/*.d.{cts,mts,ts}",
|
|
427
|
+
"**/*.d.vue.{cts,mts,ts}",
|
|
428
|
+
"**/.{pnpm-store,vercel,netlify,output,git,cache,data}",
|
|
429
|
+
"**/*.sock",
|
|
430
|
+
relative(rootDir, analyzeDir),
|
|
431
|
+
relative(rootDir, buildDir)
|
|
432
|
+
]);
|
|
433
|
+
if (ignorePrefix) ignore.add(`**/${ignorePrefix}*.*`);
|
|
434
|
+
if (Array.isArray(val)) {
|
|
435
|
+
for (const pattern of val) if (pattern) ignore.add(pattern);
|
|
436
|
+
}
|
|
437
|
+
return [...ignore];
|
|
438
|
+
} },
|
|
439
|
+
watch: { $resolve: (val) => {
|
|
440
|
+
if (Array.isArray(val)) return val.filter((b) => typeof b === "string" || b instanceof RegExp);
|
|
441
|
+
return [];
|
|
442
|
+
} },
|
|
443
|
+
watchers: {
|
|
444
|
+
rewatchOnRawEvents: void 0,
|
|
445
|
+
webpack: { aggregateTimeout: 1e3 },
|
|
446
|
+
chokidar: {
|
|
447
|
+
ignoreInitial: true,
|
|
448
|
+
ignorePermissionErrors: true
|
|
449
|
+
}
|
|
450
|
+
},
|
|
451
|
+
hooks: void 0,
|
|
452
|
+
runtimeConfig: { $resolve: async (_val, get) => {
|
|
453
|
+
const val = _val && typeof _val === "object" ? _val : {};
|
|
454
|
+
const [app, buildId] = await Promise.all([get("app"), get("buildId")]);
|
|
455
|
+
provideFallbackValues(val);
|
|
456
|
+
return defu(val, {
|
|
457
|
+
public: {},
|
|
458
|
+
app: {
|
|
459
|
+
buildId,
|
|
460
|
+
baseURL: app.baseURL,
|
|
461
|
+
buildAssetsDir: app.buildAssetsDir,
|
|
462
|
+
cdnURL: app.cdnURL
|
|
463
|
+
}
|
|
464
|
+
});
|
|
465
|
+
} },
|
|
466
|
+
appConfig: { nuxt: {} },
|
|
467
|
+
$schema: {}
|
|
576
468
|
});
|
|
577
469
|
function provideFallbackValues(obj) {
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
obj[key] = "";
|
|
581
|
-
} else if (typeof obj[key] === "object") {
|
|
582
|
-
provideFallbackValues(obj[key]);
|
|
583
|
-
}
|
|
584
|
-
}
|
|
470
|
+
for (const key in obj) if (typeof obj[key] === "undefined" || obj[key] === null) obj[key] = "";
|
|
471
|
+
else if (typeof obj[key] === "object") provideFallbackValues(obj[key]);
|
|
585
472
|
}
|
|
586
473
|
function withTrailingSlash(str) {
|
|
587
|
-
|
|
474
|
+
return str.replace(/\/?$/, "/");
|
|
588
475
|
}
|
|
589
476
|
|
|
590
|
-
|
|
477
|
+
//#endregion
|
|
478
|
+
//#region ../ui-templates/dist/templates/loading.ts
|
|
479
|
+
const _messages = {
|
|
480
|
+
"appName": "Nuxt",
|
|
481
|
+
"loading": "Loading",
|
|
482
|
+
"version": "4.0"
|
|
483
|
+
};
|
|
591
484
|
const template = (messages) => {
|
|
592
|
-
|
|
593
|
-
return '<!DOCTYPE html><html lang="en"><head><title>' + escapeHtml(messages.loading) + " | " + escapeHtml(messages.appName) + '</title><meta charset="utf-8"><meta content="width=device-width,initial-scale=1.0,minimum-scale=1.0" name="viewport"><style>.nuxt-loader-bar{background:#00dc82;bottom:0;height:3px;left:0;position:fixed;right:0}.triangle-loading{position:absolute}.triangle-loading>path{animation:nuxt-loading-move 3s linear infinite;fill:none;stroke-dasharray:128;stroke-dashoffset:128;stroke-linecap:round;stroke-linejoin:round;stroke-width:4px}.nuxt-logo:hover .triangle-loading>path{animation-play-state:paused}@keyframes nuxt-loading-move{to{stroke-dashoffset:-128}}@media (prefers-color-scheme:dark){body,html{color:#fff;color-scheme:dark}}*,:after,:before{border-color:var(--un-default-border-color,#e5e7eb);border-style:solid;border-width:0;box-sizing:border-box}:after,:before{--un-content:""}html{line-height:1.5;-webkit-text-size-adjust:100%;font-family:ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;font-feature-settings:normal;font-variation-settings:normal;-moz-tab-size:4;tab-size:4;-webkit-tap-highlight-color:transparent}body{line-height:inherit;margin:0}a{color:inherit;text-decoration:inherit}svg{display:block;vertical-align:middle}*,:after,:before{--un-rotate:0;--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-scale-x:1;--un-scale-y:1;--un-scale-z:1;--un-skew-x:0;--un-skew-y:0;--un-translate-x:0;--un-translate-y:0;--un-translate-z:0;--un-pan-x: ;--un-pan-y: ;--un-pinch-zoom: ;--un-scroll-snap-strictness:proximity;--un-ordinal: ;--un-slashed-zero: ;--un-numeric-figure: ;--un-numeric-spacing: ;--un-numeric-fraction: ;--un-border-spacing-x:0;--un-border-spacing-y:0;--un-ring-offset-shadow:0 0 transparent;--un-ring-shadow:0 0 transparent;--un-shadow-inset: ;--un-shadow:0 0 transparent;--un-ring-inset: ;--un-ring-offset-width:0px;--un-ring-offset-color:#fff;--un-ring-width:0px;--un-ring-color:rgba(147,197,253,.5);--un-blur: ;--un-brightness: ;--un-contrast: ;--un-drop-shadow: ;--un-grayscale: ;--un-hue-rotate: ;--un-invert: ;--un-saturate: ;--un-sepia: ;--un-backdrop-blur: ;--un-backdrop-brightness: ;--un-backdrop-contrast: ;--un-backdrop-grayscale: ;--un-backdrop-hue-rotate: ;--un-backdrop-invert: ;--un-backdrop-opacity: ;--un-backdrop-saturate: ;--un-backdrop-sepia: }.relative{position:relative}.inline-block{display:inline-block}.min-h-screen{min-height:100vh}.flex{display:flex}.flex-col{flex-direction:column}.items-end{align-items:flex-end}.items-center{align-items:center}.justify-center{justify-content:center}.gap-4{gap:1rem}.overflow-hidden{overflow:hidden}.border{border-width:1px}.border-\\[\\#00DC42\\]\\/50{border-color:#00dc4280}.group:hover .group-hover\\:border-\\[\\#00DC42\\]{--un-border-opacity:1;border-color:rgb(0 220 66/var(--un-border-opacity))}.rounded{border-radius:.25rem}.bg-\\[\\#00DC42\\]\\/10{background-color:#00dc421a}.bg-white{--un-bg-opacity:1;background-color:rgb(255 255 255/var(--un-bg-opacity))}.group:hover .group-hover\\:bg-\\[\\#00DC42\\]\\/15{background-color:#00dc4226}.px-2\\.5{padding-left:.625rem;padding-right:.625rem}.py-1\\.5{padding-bottom:.375rem;padding-top:.375rem}.text-center{text-align:center}.text-\\[16px\\]{font-size:16px}.group:hover .group-hover\\:text-\\[\\#00DC82\\],.text-\\[\\#00DC82\\]{--un-text-opacity:1;color:rgb(0 220 130/var(--un-text-opacity))}.text-\\[\\#00DC82\\]\\/80{color:#00dc82cc}.group:hover .group-hover\\:text-\\[\\#020420\\],.text-\\[\\#020420\\]{--un-text-opacity:1;color:rgb(2 4 32/var(--un-text-opacity))}.text-\\[\\#020420\\]\\/80{color:#020420cc}.font-semibold{font-weight:600}.leading-none{line-height:1}.font-mono{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}.font-sans{font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji}.antialiased{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}@media(prefers-color-scheme:dark){.dark\\:bg-\\[\\#020420\\]{--un-bg-opacity:1;background-color:rgb(2 4 32/var(--un-bg-opacity))}.dark\\:text-gray-200{--un-text-opacity:1;color:rgb(224 224 224/var(--un-text-opacity))}.dark\\:text-white,.group:hover .dark\\:group-hover\\:text-white{--un-text-opacity:1;color:rgb(255 255 255/var(--un-text-opacity))}}</style><script>!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)}}();<\/script></head><body class="antialiased bg-white dark:bg-[#020420] dark:text-white flex flex-col font-sans items-center justify-center min-h-screen overflow-hidden relative text-[#020420] text-center"><a href="https://nuxt.com/?utm_source=nuxt-loading-screen" target="_blank" rel="noopener" class="flex gap-4 group items-end nuxt-logo" id="nuxtImg"> <div class="relative"><svg xmlns="http://www.w3.org/2000/svg" width="80" fill="none" class="group-hover:text-[#00DC82] text-[#00DC82]/80 triangle-loading" viewBox="0 0 37 25"><path stroke="currentColor" d="M24.236 22.006h10.742L25.563 5.822l-8.979 14.31a4 4 0 0 1-3.388 1.874H2.978l11.631-20 5.897 10.567"/></svg> <svg xmlns="http://www.w3.org/2000/svg" width="214" height="53" fill="none" class="dark:group-hover:text-white dark:text-gray-200 group-hover:text-[#020420] text-[#020420]/80" viewBox="0 0 800 200"><path fill="currentColor" d="M377 200a4 4 0 0 0 4-4v-93s5.244 8.286 15 25l38.707 66.961c1.789 3.119 5.084 5.039 8.649 5.039H470V50h-27a4 4 0 0 0-4 4v94l-17-30-36.588-62.98c-1.792-3.108-5.081-5.02-8.639-5.02H350v150zm299.203-56.143L710.551 92h-25.73a9.97 9.97 0 0 0-8.333 4.522L660.757 120.5l-15.731-23.978A9.97 9.97 0 0 0 636.693 92h-25.527l34.348 51.643L608.524 200h24.966a9.97 9.97 0 0 0 8.29-4.458l19.18-28.756 18.981 28.72a9.97 9.97 0 0 0 8.313 4.494h24.736zM724.598 92h19.714V60.071h28.251V92H800v24.857h-27.437V159.5c0 10.5 5.284 15.429 14.43 15.429H800V200h-16.869c-23.576 0-38.819-14.143-38.819-39.214v-43.929h-19.714zM590 92h-15c-3.489 0-6.218.145-8.5 2.523-2.282 2.246-2.5 3.63-2.5 7.066v52.486c0 8.058-.376 12.962-4 16.925-3.624 3.831-8.619 5-16 5-7.247 0-12.376-1.169-16-5-3.624-3.963-4-8.867-4-16.925v-52.486c0-3.435-.218-4.82-2.5-7.066C519.218 92.145 516.489 92 513 92h-15v62.422q0 21.006 11.676 33.292C517.594 195.905 529.103 200 544 200s26.204-4.095 34.123-12.286Q590 175.428 590 154.422z"/></svg></div> <span class="bg-[#00DC42]/10 border border-[#00DC42]/50 font-mono font-semibold group-hover:bg-[#00DC42]/15 group-hover:border-[#00DC42] inline-block leading-none px-2.5 py-1.5 rounded text-[#00DC82] text-[16px]">4.2.2</span> </a><div class="nuxt-loader-bar"></div><script>if(void 0===window.fetch)setTimeout(()=>window.location.reload(),200);else{const o=async()=>{try{if(!(await window.fetch(window.location.href).then(o=>o.text())).includes("__NUXT_LOADING__"))return window.location.reload()}catch{}setTimeout(o,200)};o()}<\/script><script>const prefersReducedMotion=window.matchMedia("(prefers-reduced-motion: reduce)").matches;function whatHemisphere(){let e=new Date;if(null==e.getTimezoneOffset)return null;e=e.getFullYear();let t=-new Date(e,0,1,0,0,0,0).getTimezoneOffset()- -new Date(e,6,1,0,0,0,0).getTimezoneOffset();return t<0?"N":t>0?"S":null}const months={N:[10,11,0],S:[4,5,6]},hemisphere=whatHemisphere();if(hemisphere&&months[hemisphere].includes((new Date).getMonth())&&!prefersReducedMotion){let e="false"!==localStorage.getItem("nuxt-snow"),t=null,n=[],r=Date.now();const i=25e-5,a=1.25,o={current:0,maxCurrent:4,force:.1,target:.1,min:.1,max:.4,easing:.01},s=(e,t)=>(e%t+t)%t,d=document.createElement("button");d.id="snow-toggle",d.style="position:fixed;bottom:16px;right:16px;z-index:100;background:rgba(255,255,255,0.1);border:1px solid rgba(255,255,255,0.2);border-radius:8px;padding:8px 12px;cursor:pointer;font-size:20px;",document.body.appendChild(d);const h=document.createElement("canvas");h.id="snow-canvas",h.style="position:fixed;inset:0;z-index:-10;pointer-events:none;opacity:0;transition:opacity 0.5s;filter:blur(4px);",document.body.appendChild(h);const l=h.getContext("2d");function resize(){h.width=window.innerWidth,h.height=window.innerHeight,n=Array.from({length:Math.floor(h.width*h.height*i)},()=>({x:Math.random()*h.width,y:Math.random()*h.height,vx:1+Math.random(),vy:1+Math.random(),vsin:10*Math.random(),rangle:2*Math.random()*Math.PI,rsin:10*Math.random(),color:`rgba(255,255,255,${.1+.15*Math.random()})`,size:5*Math.random()*4*(h.height/1e3)}))}function draw(){l.clearRect(0,0,h.width,h.height);const e=Date.now(),i=e-r;r=e,o.force+=(o.target-o.force)*o.easing,o.current=Math.max(-o.maxCurrent,Math.min(o.current+o.force*i*.05,o.maxCurrent)),Math.random()>.995&&(o.target=(o.min+Math.random()*(o.max-o.min))*(Math.random()>.5?-1:1));const d=.2*i;n.forEach(e=>{e.x=s(e.x+d+o.current*e.vx,h.width),e.y=s(e.y+d*e.vy*a,h.height),e.x+=Math.sin(d*e.vsin)*e.rsin*.5,e.rangle+=.01*d,l.fillStyle=e.color,l.beginPath(),l.ellipse(e.x,e.y,e.size,.66*e.size,e.rangle,0,2*Math.PI),l.fill()}),t=requestAnimationFrame(draw)}function update(){d.innerHTML=e?"\u2600\uFE0F":"\u2744\uFE0F",d.title=e?"Disable snow":"Enable snow",e?(resize(),window.addEventListener("resize",resize),h.style.opacity=1,r=Date.now(),draw()):(t&&cancelAnimationFrame(t),t=null,window.removeEventListener("resize",resize),h.style.opacity=0)}d.onclick=()=>{e=!e,localStorage.setItem("nuxt-snow",e),update()},update()}<\/script></body></html>';
|
|
485
|
+
messages = {
|
|
486
|
+
..._messages,
|
|
487
|
+
...messages
|
|
488
|
+
};
|
|
489
|
+
return "<!DOCTYPE html><html lang=\"en\"><head><title>" + escapeHtml(messages.loading) + " | " + escapeHtml(messages.appName) + "</title><meta charset=\"utf-8\"><meta content=\"width=device-width,initial-scale=1.0,minimum-scale=1.0\" name=\"viewport\"><style>.nuxt-loader-bar{background:#00dc82;bottom:0;height:3px;left:0;position:fixed;right:0}.triangle-loading{position:absolute}.triangle-loading>path{animation:nuxt-loading-move 3s linear infinite;fill:none;stroke-dasharray:128;stroke-dashoffset:128;stroke-linecap:round;stroke-linejoin:round;stroke-width:4px}.nuxt-logo:hover .triangle-loading>path{animation-play-state:paused}@keyframes nuxt-loading-move{to{stroke-dashoffset:-128}}@media (prefers-color-scheme:dark){body,html{color:#fff;color-scheme:dark}}*,:after,:before{border-color:var(--un-default-border-color,#e5e7eb);border-style:solid;border-width:0;box-sizing:border-box}:after,:before{--un-content:\"\"}html{line-height:1.5;-webkit-text-size-adjust:100%;font-family:ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;font-feature-settings:normal;font-variation-settings:normal;-moz-tab-size:4;tab-size:4;-webkit-tap-highlight-color:transparent}body{line-height:inherit;margin:0}a{color:inherit;text-decoration:inherit}svg{display:block;vertical-align:middle}*,:after,:before{--un-rotate:0;--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-scale-x:1;--un-scale-y:1;--un-scale-z:1;--un-skew-x:0;--un-skew-y:0;--un-translate-x:0;--un-translate-y:0;--un-translate-z:0;--un-pan-x: ;--un-pan-y: ;--un-pinch-zoom: ;--un-scroll-snap-strictness:proximity;--un-ordinal: ;--un-slashed-zero: ;--un-numeric-figure: ;--un-numeric-spacing: ;--un-numeric-fraction: ;--un-border-spacing-x:0;--un-border-spacing-y:0;--un-ring-offset-shadow:0 0 transparent;--un-ring-shadow:0 0 transparent;--un-shadow-inset: ;--un-shadow:0 0 transparent;--un-ring-inset: ;--un-ring-offset-width:0px;--un-ring-offset-color:#fff;--un-ring-width:0px;--un-ring-color:rgba(147,197,253,.5);--un-blur: ;--un-brightness: ;--un-contrast: ;--un-drop-shadow: ;--un-grayscale: ;--un-hue-rotate: ;--un-invert: ;--un-saturate: ;--un-sepia: ;--un-backdrop-blur: ;--un-backdrop-brightness: ;--un-backdrop-contrast: ;--un-backdrop-grayscale: ;--un-backdrop-hue-rotate: ;--un-backdrop-invert: ;--un-backdrop-opacity: ;--un-backdrop-saturate: ;--un-backdrop-sepia: }.relative{position:relative}.inline-block{display:inline-block}.min-h-screen{min-height:100vh}.flex{display:flex}.flex-col{flex-direction:column}.items-end{align-items:flex-end}.items-center{align-items:center}.justify-center{justify-content:center}.gap-4{gap:1rem}.overflow-hidden{overflow:hidden}.border{border-width:1px}.border-\\[\\#00DC42\\]\\/50{border-color:#00dc4280}.group:hover .group-hover\\:border-\\[\\#00DC42\\]{--un-border-opacity:1;border-color:rgb(0 220 66/var(--un-border-opacity))}.rounded{border-radius:.25rem}.bg-\\[\\#00DC42\\]\\/10{background-color:#00dc421a}.bg-white{--un-bg-opacity:1;background-color:rgb(255 255 255/var(--un-bg-opacity))}.group:hover .group-hover\\:bg-\\[\\#00DC42\\]\\/15{background-color:#00dc4226}.px-2\\.5{padding-left:.625rem;padding-right:.625rem}.py-1\\.5{padding-bottom:.375rem;padding-top:.375rem}.text-center{text-align:center}.text-\\[16px\\]{font-size:16px}.group:hover .group-hover\\:text-\\[\\#00DC82\\],.text-\\[\\#00DC82\\]{--un-text-opacity:1;color:rgb(0 220 130/var(--un-text-opacity))}.text-\\[\\#00DC82\\]\\/80{color:#00dc82cc}.group:hover .group-hover\\:text-\\[\\#020420\\],.text-\\[\\#020420\\]{--un-text-opacity:1;color:rgb(2 4 32/var(--un-text-opacity))}.text-\\[\\#020420\\]\\/80{color:#020420cc}.font-semibold{font-weight:600}.leading-none{line-height:1}.font-mono{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}.font-sans{font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji}.antialiased{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}@media(prefers-color-scheme:dark){.dark\\:bg-\\[\\#020420\\]{--un-bg-opacity:1;background-color:rgb(2 4 32/var(--un-bg-opacity))}.dark\\:text-gray-200{--un-text-opacity:1;color:rgb(224 224 224/var(--un-text-opacity))}.dark\\:text-white,.group:hover .dark\\:group-hover\\:text-white{--un-text-opacity:1;color:rgb(255 255 255/var(--un-text-opacity))}}</style><script>!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)}}();<\/script></head><body class=\"antialiased bg-white dark:bg-[#020420] dark:text-white flex flex-col font-sans items-center justify-center min-h-screen overflow-hidden relative text-[#020420] text-center\"><a href=\"https://nuxt.com/?utm_source=nuxt-loading-screen\" target=\"_blank\" rel=\"noopener\" class=\"flex gap-4 group items-end nuxt-logo\" id=\"nuxtImg\"> <div class=\"relative\"><svg xmlns=\"http://www.w3.org/2000/svg\" width=\"80\" fill=\"none\" class=\"group-hover:text-[#00DC82] text-[#00DC82]/80 triangle-loading\" viewBox=\"0 0 37 25\"><path stroke=\"currentColor\" d=\"M24.236 22.006h10.742L25.563 5.822l-8.979 14.31a4 4 0 0 1-3.388 1.874H2.978l11.631-20 5.897 10.567\"/></svg> <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"214\" height=\"53\" fill=\"none\" class=\"dark:group-hover:text-white dark:text-gray-200 group-hover:text-[#020420] text-[#020420]/80\" viewBox=\"0 0 800 200\"><path fill=\"currentColor\" d=\"M377 200a4 4 0 0 0 4-4v-93s5.244 8.286 15 25l38.707 66.961c1.789 3.119 5.084 5.039 8.649 5.039H470V50h-27a4 4 0 0 0-4 4v94l-17-30-36.588-62.98c-1.792-3.108-5.081-5.02-8.639-5.02H350v150zm299.203-56.143L710.551 92h-25.73a9.97 9.97 0 0 0-8.333 4.522L660.757 120.5l-15.731-23.978A9.97 9.97 0 0 0 636.693 92h-25.527l34.348 51.643L608.524 200h24.966a9.97 9.97 0 0 0 8.29-4.458l19.18-28.756 18.981 28.72a9.97 9.97 0 0 0 8.313 4.494h24.736zM724.598 92h19.714V60.071h28.251V92H800v24.857h-27.437V159.5c0 10.5 5.284 15.429 14.43 15.429H800V200h-16.869c-23.576 0-38.819-14.143-38.819-39.214v-43.929h-19.714zM590 92h-15c-3.489 0-6.218.145-8.5 2.523-2.282 2.246-2.5 3.63-2.5 7.066v52.486c0 8.058-.376 12.962-4 16.925-3.624 3.831-8.619 5-16 5-7.247 0-12.376-1.169-16-5-3.624-3.963-4-8.867-4-16.925v-52.486c0-3.435-.218-4.82-2.5-7.066C519.218 92.145 516.489 92 513 92h-15v62.422q0 21.006 11.676 33.292C517.594 195.905 529.103 200 544 200s26.204-4.095 34.123-12.286Q590 175.428 590 154.422z\"/></svg></div> <span class=\"bg-[#00DC42]/10 border border-[#00DC42]/50 font-mono font-semibold group-hover:bg-[#00DC42]/15 group-hover:border-[#00DC42] inline-block leading-none px-2.5 py-1.5 rounded text-[#00DC82] text-[16px]\">4.2.2</span> </a><div class=\"nuxt-loader-bar\"></div><script>if(void 0===window.fetch)setTimeout(()=>window.location.reload(),200);else{const o=async()=>{try{if(!(await window.fetch(window.location.href).then(o=>o.text())).includes(\"__NUXT_LOADING__\"))return window.location.reload()}catch{}setTimeout(o,200)};o()}<\/script><script>const prefersReducedMotion=window.matchMedia(\"(prefers-reduced-motion: reduce)\").matches;function whatHemisphere(){let e=new Date;if(null==e.getTimezoneOffset)return null;e=e.getFullYear();let t=-new Date(e,0,1,0,0,0,0).getTimezoneOffset()- -new Date(e,6,1,0,0,0,0).getTimezoneOffset();return t<0?\"N\":t>0?\"S\":null}const months={N:[10,11,0],S:[4,5,6]},hemisphere=whatHemisphere();if(hemisphere&&months[hemisphere].includes((new Date).getMonth())&&!prefersReducedMotion){let e=\"false\"!==localStorage.getItem(\"nuxt-snow\"),t=null,n=[],r=Date.now();const i=25e-5,a=1.25,o={current:0,maxCurrent:4,force:.1,target:.1,min:.1,max:.4,easing:.01},s=(e,t)=>(e%t+t)%t,d=document.createElement(\"button\");d.id=\"snow-toggle\",d.style=\"position:fixed;bottom:16px;right:16px;z-index:100;background:rgba(255,255,255,0.1);border:1px solid rgba(255,255,255,0.2);border-radius:8px;padding:8px 12px;cursor:pointer;font-size:20px;\",document.body.appendChild(d);const h=document.createElement(\"canvas\");h.id=\"snow-canvas\",h.style=\"position:fixed;inset:0;z-index:-10;pointer-events:none;opacity:0;transition:opacity 0.5s;filter:blur(4px);\",document.body.appendChild(h);const l=h.getContext(\"2d\");function resize(){h.width=window.innerWidth,h.height=window.innerHeight,n=Array.from({length:Math.floor(h.width*h.height*i)},()=>({x:Math.random()*h.width,y:Math.random()*h.height,vx:1+Math.random(),vy:1+Math.random(),vsin:10*Math.random(),rangle:2*Math.random()*Math.PI,rsin:10*Math.random(),color:`rgba(255,255,255,${.1+.15*Math.random()})`,size:5*Math.random()*4*(h.height/1e3)}))}function draw(){l.clearRect(0,0,h.width,h.height);const e=Date.now(),i=e-r;r=e,o.force+=(o.target-o.force)*o.easing,o.current=Math.max(-o.maxCurrent,Math.min(o.current+o.force*i*.05,o.maxCurrent)),Math.random()>.995&&(o.target=(o.min+Math.random()*(o.max-o.min))*(Math.random()>.5?-1:1));const d=.2*i;n.forEach(e=>{e.x=s(e.x+d+o.current*e.vx,h.width),e.y=s(e.y+d*e.vy*a,h.height),e.x+=Math.sin(d*e.vsin)*e.rsin*.5,e.rangle+=.01*d,l.fillStyle=e.color,l.beginPath(),l.ellipse(e.x,e.y,e.size,.66*e.size,e.rangle,0,2*Math.PI),l.fill()}),t=requestAnimationFrame(draw)}function update(){d.innerHTML=e?\"☀️\":\"❄️\",d.title=e?\"Disable snow\":\"Enable snow\",e?(resize(),window.addEventListener(\"resize\",resize),h.style.opacity=1,r=Date.now(),draw()):(t&&cancelAnimationFrame(t),t=null,window.removeEventListener(\"resize\",resize),h.style.opacity=0)}d.onclick=()=>{e=!e,localStorage.setItem(\"nuxt-snow\",e),update()},update()}<\/script></body></html>";
|
|
594
490
|
};
|
|
595
491
|
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
}
|
|
607
|
-
});
|
|
492
|
+
//#endregion
|
|
493
|
+
//#region src/config/dev.ts
|
|
494
|
+
var dev_default = defineResolvers({ devServer: {
|
|
495
|
+
https: false,
|
|
496
|
+
port: Number(process.env.NUXT_PORT || process.env.NITRO_PORT || process.env.PORT || 3e3),
|
|
497
|
+
host: process.env.NUXT_HOST || process.env.NITRO_HOST || process.env.HOST || void 0,
|
|
498
|
+
url: "http://localhost:3000",
|
|
499
|
+
loadingTemplate: template,
|
|
500
|
+
cors: { origin: [/^https?:\/\/(?:(?:[^:]+\.)?localhost|127\.0\.0\.1|\[::1\])(?::\d+)?$/] }
|
|
501
|
+
} });
|
|
608
502
|
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
jsxFragment: "Fragment",
|
|
626
|
-
tsconfigRaw: {
|
|
627
|
-
$resolve: async (_val, get) => {
|
|
628
|
-
const val = typeof _val === "string" ? JSON.parse(_val) : _val && typeof _val === "object" ? _val : {};
|
|
629
|
-
const useDecorators = await get("experimental").then((r) => r?.decorators === true);
|
|
630
|
-
if (!useDecorators) {
|
|
631
|
-
return val;
|
|
632
|
-
}
|
|
633
|
-
return defu({
|
|
634
|
-
compilerOptions: {
|
|
635
|
-
experimentalDecorators: false
|
|
636
|
-
}
|
|
637
|
-
}, val);
|
|
638
|
-
}
|
|
639
|
-
}
|
|
640
|
-
}
|
|
641
|
-
}
|
|
642
|
-
});
|
|
503
|
+
//#endregion
|
|
504
|
+
//#region src/config/esbuild.ts
|
|
505
|
+
var esbuild_default = defineResolvers({ esbuild: { options: {
|
|
506
|
+
target: { $resolve: async (val, get) => {
|
|
507
|
+
if (typeof val === "string") return val;
|
|
508
|
+
if (await get("experimental").then((r) => r?.decorators === true)) return "es2024";
|
|
509
|
+
return "esnext";
|
|
510
|
+
} },
|
|
511
|
+
jsxFactory: "h",
|
|
512
|
+
jsxFragment: "Fragment",
|
|
513
|
+
tsconfigRaw: { $resolve: async (_val, get) => {
|
|
514
|
+
const val = typeof _val === "string" ? JSON.parse(_val) : _val && typeof _val === "object" ? _val : {};
|
|
515
|
+
if (!await get("experimental").then((r) => r?.decorators === true)) return val;
|
|
516
|
+
return defu({ compilerOptions: { experimentalDecorators: false } }, val);
|
|
517
|
+
} }
|
|
518
|
+
} } });
|
|
643
519
|
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
);
|
|
656
|
-
if (useDecorators) {
|
|
657
|
-
return "es2024";
|
|
658
|
-
}
|
|
659
|
-
return "esnext";
|
|
660
|
-
}
|
|
661
|
-
},
|
|
662
|
-
jsxFactory: "h",
|
|
663
|
-
jsxFragment: "Fragment"
|
|
664
|
-
}
|
|
665
|
-
}
|
|
666
|
-
}
|
|
667
|
-
});
|
|
520
|
+
//#endregion
|
|
521
|
+
//#region src/config/oxc.ts
|
|
522
|
+
var oxc_default = defineResolvers({ oxc: { transform: { options: {
|
|
523
|
+
target: { $resolve: async (val, get) => {
|
|
524
|
+
if (typeof val === "string") return val;
|
|
525
|
+
if (await get("experimental").then((r) => r?.decorators === true)) return "es2024";
|
|
526
|
+
return "esnext";
|
|
527
|
+
} },
|
|
528
|
+
jsxFactory: "h",
|
|
529
|
+
jsxFragment: "Fragment"
|
|
530
|
+
} } } });
|
|
668
531
|
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
clientNodeCompat: false,
|
|
812
|
-
navigationRepaint: true,
|
|
813
|
-
buildCache: false,
|
|
814
|
-
normalizeComponentNames: {
|
|
815
|
-
$resolve: (val) => {
|
|
816
|
-
return typeof val === "boolean" ? val : true;
|
|
817
|
-
}
|
|
818
|
-
},
|
|
819
|
-
spaLoadingTemplateLocation: {
|
|
820
|
-
$resolve: (val) => {
|
|
821
|
-
const validOptions = /* @__PURE__ */ new Set(["body", "within"]);
|
|
822
|
-
return typeof val === "string" && validOptions.has(val) ? val : "body";
|
|
823
|
-
}
|
|
824
|
-
},
|
|
825
|
-
browserDevtoolsTiming: {
|
|
826
|
-
$resolve: async (val, get) => typeof val === "boolean" ? val : await get("dev")
|
|
827
|
-
},
|
|
828
|
-
chromeDevtoolsProjectSettings: true,
|
|
829
|
-
debugModuleMutation: {
|
|
830
|
-
$resolve: async (val, get) => {
|
|
831
|
-
return typeof val === "boolean" ? val : Boolean(await get("debug"));
|
|
832
|
-
}
|
|
833
|
-
},
|
|
834
|
-
lazyHydration: {
|
|
835
|
-
$resolve: (val) => {
|
|
836
|
-
return typeof val === "boolean" ? val : true;
|
|
837
|
-
}
|
|
838
|
-
},
|
|
839
|
-
templateImportResolution: true,
|
|
840
|
-
purgeCachedData: {
|
|
841
|
-
$resolve: (val) => {
|
|
842
|
-
return typeof val === "boolean" ? val : true;
|
|
843
|
-
}
|
|
844
|
-
},
|
|
845
|
-
granularCachedData: {
|
|
846
|
-
$resolve: (val) => {
|
|
847
|
-
return typeof val === "boolean" ? val : true;
|
|
848
|
-
}
|
|
849
|
-
},
|
|
850
|
-
alwaysRunFetchOnKeyChange: {
|
|
851
|
-
$resolve: (val) => {
|
|
852
|
-
return typeof val === "boolean" ? val : false;
|
|
853
|
-
}
|
|
854
|
-
},
|
|
855
|
-
parseErrorData: {
|
|
856
|
-
$resolve: (val) => {
|
|
857
|
-
return typeof val === "boolean" ? val : true;
|
|
858
|
-
}
|
|
859
|
-
},
|
|
860
|
-
enforceModuleCompatibility: false,
|
|
861
|
-
pendingWhenIdle: {
|
|
862
|
-
$resolve: (val) => {
|
|
863
|
-
return typeof val === "boolean" ? val : false;
|
|
864
|
-
}
|
|
865
|
-
},
|
|
866
|
-
entryImportMap: true,
|
|
867
|
-
extractAsyncDataHandlers: {
|
|
868
|
-
$resolve: (val) => {
|
|
869
|
-
return typeof val === "boolean" ? val : false;
|
|
870
|
-
}
|
|
871
|
-
},
|
|
872
|
-
viteEnvironmentApi: {
|
|
873
|
-
$resolve: async (val, get) => {
|
|
874
|
-
return typeof val === "boolean" ? val : await get("future.compatibilityVersion") >= 5;
|
|
875
|
-
}
|
|
876
|
-
},
|
|
877
|
-
nitroAutoImports: {
|
|
878
|
-
$resolve: async (val, get) => {
|
|
879
|
-
return typeof val === "boolean" ? val : await get("future.compatibilityVersion") < 5;
|
|
880
|
-
}
|
|
881
|
-
}
|
|
882
|
-
}
|
|
532
|
+
//#endregion
|
|
533
|
+
//#region src/config/experimental.ts
|
|
534
|
+
var experimental_default = defineResolvers({
|
|
535
|
+
future: {
|
|
536
|
+
compatibilityVersion: { $resolve: (val) => typeof val === "number" ? val : 4 },
|
|
537
|
+
multiApp: false,
|
|
538
|
+
typescriptBundlerResolution: { async $resolve(val, get) {
|
|
539
|
+
val = typeof val === "boolean" ? val : await get("experimental").then((e) => e?.typescriptBundlerResolution);
|
|
540
|
+
if (typeof val === "boolean") return val;
|
|
541
|
+
const setting = await get("typescript.tsConfig").then((r) => r?.compilerOptions?.moduleResolution);
|
|
542
|
+
if (setting) return setting.toLowerCase() === "bundler";
|
|
543
|
+
return true;
|
|
544
|
+
} }
|
|
545
|
+
},
|
|
546
|
+
features: {
|
|
547
|
+
inlineStyles: { async $resolve(_val, get) {
|
|
548
|
+
const val = typeof _val === "boolean" || typeof _val === "function" ? _val : await get("experimental").then((e) => e?.inlineSSRStyles);
|
|
549
|
+
if (val === false || await get("dev") || await get("ssr") === false) return false;
|
|
550
|
+
return val ?? ((id) => !!id && id.includes(".vue"));
|
|
551
|
+
} },
|
|
552
|
+
devLogs: { async $resolve(val, get) {
|
|
553
|
+
if (typeof val === "boolean" || val === "silent") return val;
|
|
554
|
+
const [isDev, isTest$1] = await Promise.all([get("dev"), get("test")]);
|
|
555
|
+
return isDev && !isTest$1;
|
|
556
|
+
} },
|
|
557
|
+
noScripts: { async $resolve(val, get) {
|
|
558
|
+
const isValidLiteral = (val$1) => {
|
|
559
|
+
return typeof val$1 === "string" && ["production", "all"].includes(val$1);
|
|
560
|
+
};
|
|
561
|
+
return val === true ? "production" : val === false || isValidLiteral(val) ? val : await get("experimental").then((e) => e?.noScripts && "production") ?? false;
|
|
562
|
+
} }
|
|
563
|
+
},
|
|
564
|
+
experimental: {
|
|
565
|
+
runtimeBaseURL: false,
|
|
566
|
+
decorators: false,
|
|
567
|
+
asyncEntry: { $resolve: (val) => typeof val === "boolean" ? val : false },
|
|
568
|
+
externalVue: true,
|
|
569
|
+
serverAppConfig: true,
|
|
570
|
+
emitRouteChunkError: { $resolve: (val) => {
|
|
571
|
+
if (val === true) return "manual";
|
|
572
|
+
if (val === "reload") return "automatic";
|
|
573
|
+
if (val === false) return false;
|
|
574
|
+
if (typeof val === "string" && new Set([
|
|
575
|
+
"manual",
|
|
576
|
+
"automatic",
|
|
577
|
+
"automatic-immediate"
|
|
578
|
+
]).has(val)) return val;
|
|
579
|
+
return "automatic";
|
|
580
|
+
} },
|
|
581
|
+
templateRouteInjection: true,
|
|
582
|
+
restoreState: false,
|
|
583
|
+
renderJsonPayloads: true,
|
|
584
|
+
noVueServer: false,
|
|
585
|
+
payloadExtraction: true,
|
|
586
|
+
clientFallback: false,
|
|
587
|
+
crossOriginPrefetch: false,
|
|
588
|
+
viewTransition: false,
|
|
589
|
+
writeEarlyHints: false,
|
|
590
|
+
componentIslands: { $resolve: (val) => {
|
|
591
|
+
if (val === "local+remote") return { remoteIsland: true };
|
|
592
|
+
if (val === "local") return true;
|
|
593
|
+
return val ?? "auto";
|
|
594
|
+
} },
|
|
595
|
+
localLayerAliases: true,
|
|
596
|
+
typedPages: false,
|
|
597
|
+
appManifest: true,
|
|
598
|
+
checkOutdatedBuildInterval: 1e3 * 60 * 60,
|
|
599
|
+
watcher: { $resolve: async (val, get) => {
|
|
600
|
+
if (typeof val === "string" && new Set([
|
|
601
|
+
"chokidar",
|
|
602
|
+
"parcel",
|
|
603
|
+
"chokidar-granular"
|
|
604
|
+
]).has(val)) return val;
|
|
605
|
+
const [srcDir, rootDir] = await Promise.all([get("srcDir"), get("rootDir")]);
|
|
606
|
+
if (srcDir === rootDir) return "chokidar-granular";
|
|
607
|
+
return "chokidar";
|
|
608
|
+
} },
|
|
609
|
+
asyncContext: false,
|
|
610
|
+
headNext: true,
|
|
611
|
+
inlineRouteRules: false,
|
|
612
|
+
scanPageMeta: { $resolve(val) {
|
|
613
|
+
return typeof val === "boolean" || val === "after-resolve" ? val : "after-resolve";
|
|
614
|
+
} },
|
|
615
|
+
extraPageMetaExtractionKeys: [],
|
|
616
|
+
sharedPrerenderData: { $resolve(val) {
|
|
617
|
+
return typeof val === "boolean" ? val : true;
|
|
618
|
+
} },
|
|
619
|
+
cookieStore: true,
|
|
620
|
+
defaults: {
|
|
621
|
+
nuxtLink: {
|
|
622
|
+
componentName: "NuxtLink",
|
|
623
|
+
prefetch: true,
|
|
624
|
+
prefetchOn: { visibility: true }
|
|
625
|
+
},
|
|
626
|
+
useAsyncData: { deep: false },
|
|
627
|
+
useFetch: {}
|
|
628
|
+
},
|
|
629
|
+
clientNodeCompat: false,
|
|
630
|
+
navigationRepaint: true,
|
|
631
|
+
buildCache: false,
|
|
632
|
+
normalizeComponentNames: { $resolve: (val) => {
|
|
633
|
+
return typeof val === "boolean" ? val : true;
|
|
634
|
+
} },
|
|
635
|
+
spaLoadingTemplateLocation: { $resolve: (val) => {
|
|
636
|
+
return typeof val === "string" && new Set(["body", "within"]).has(val) ? val : "body";
|
|
637
|
+
} },
|
|
638
|
+
browserDevtoolsTiming: { $resolve: async (val, get) => typeof val === "boolean" ? val : await get("dev") },
|
|
639
|
+
chromeDevtoolsProjectSettings: true,
|
|
640
|
+
debugModuleMutation: { $resolve: async (val, get) => {
|
|
641
|
+
return typeof val === "boolean" ? val : Boolean(await get("debug"));
|
|
642
|
+
} },
|
|
643
|
+
lazyHydration: { $resolve: (val) => {
|
|
644
|
+
return typeof val === "boolean" ? val : true;
|
|
645
|
+
} },
|
|
646
|
+
templateImportResolution: true,
|
|
647
|
+
purgeCachedData: { $resolve: (val) => {
|
|
648
|
+
return typeof val === "boolean" ? val : true;
|
|
649
|
+
} },
|
|
650
|
+
granularCachedData: { $resolve: (val) => {
|
|
651
|
+
return typeof val === "boolean" ? val : true;
|
|
652
|
+
} },
|
|
653
|
+
alwaysRunFetchOnKeyChange: { $resolve: (val) => {
|
|
654
|
+
return typeof val === "boolean" ? val : false;
|
|
655
|
+
} },
|
|
656
|
+
parseErrorData: { $resolve: (val) => {
|
|
657
|
+
return typeof val === "boolean" ? val : true;
|
|
658
|
+
} },
|
|
659
|
+
enforceModuleCompatibility: false,
|
|
660
|
+
pendingWhenIdle: { $resolve: (val) => {
|
|
661
|
+
return typeof val === "boolean" ? val : false;
|
|
662
|
+
} },
|
|
663
|
+
entryImportMap: true,
|
|
664
|
+
extractAsyncDataHandlers: { $resolve: (val) => {
|
|
665
|
+
return typeof val === "boolean" ? val : false;
|
|
666
|
+
} },
|
|
667
|
+
viteEnvironmentApi: { $resolve: async (val, get) => {
|
|
668
|
+
return typeof val === "boolean" ? val : await get("future.compatibilityVersion") >= 5;
|
|
669
|
+
} },
|
|
670
|
+
nitroAutoImports: { $resolve: async (val, get) => {
|
|
671
|
+
return typeof val === "boolean" ? val : await get("future.compatibilityVersion") < 5;
|
|
672
|
+
} }
|
|
673
|
+
}
|
|
883
674
|
});
|
|
884
675
|
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
});
|
|
676
|
+
//#endregion
|
|
677
|
+
//#region src/config/generate.ts
|
|
678
|
+
var generate_default = defineResolvers({ generate: {
|
|
679
|
+
routes: [],
|
|
680
|
+
exclude: []
|
|
681
|
+
} });
|
|
892
682
|
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
683
|
+
//#endregion
|
|
684
|
+
//#region src/config/internal.ts
|
|
685
|
+
var internal_default = defineResolvers({
|
|
686
|
+
_majorVersion: 4,
|
|
687
|
+
_legacyGenerate: false,
|
|
688
|
+
_start: false,
|
|
689
|
+
_build: false,
|
|
690
|
+
_generate: false,
|
|
691
|
+
_prepare: false,
|
|
692
|
+
_cli: false,
|
|
693
|
+
_requiredModules: {},
|
|
694
|
+
_loadOptions: void 0,
|
|
695
|
+
_nuxtConfigFile: void 0,
|
|
696
|
+
_nuxtConfigFiles: [],
|
|
697
|
+
appDir: "",
|
|
698
|
+
_installedModules: [],
|
|
699
|
+
_modules: []
|
|
908
700
|
});
|
|
909
701
|
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
return {
|
|
944
|
-
...await get("routeRules"),
|
|
945
|
-
...val && typeof val === "object" ? val : {}
|
|
946
|
-
};
|
|
947
|
-
}
|
|
948
|
-
}
|
|
949
|
-
},
|
|
950
|
-
routeRules: {},
|
|
951
|
-
serverHandlers: [],
|
|
952
|
-
devServerHandlers: []
|
|
702
|
+
//#endregion
|
|
703
|
+
//#region src/config/nitro.ts
|
|
704
|
+
var nitro_default = defineResolvers({
|
|
705
|
+
server: { builder: { $resolve: (val) => {
|
|
706
|
+
if (typeof val === "string") return val;
|
|
707
|
+
if (val && typeof val === "object" && "bundle" in val) return val;
|
|
708
|
+
return "@nuxt/nitro-server";
|
|
709
|
+
} } },
|
|
710
|
+
nitro: {
|
|
711
|
+
runtimeConfig: { $resolve: async (val, get) => {
|
|
712
|
+
const runtimeConfig = await get("runtimeConfig");
|
|
713
|
+
return {
|
|
714
|
+
...runtimeConfig,
|
|
715
|
+
app: {
|
|
716
|
+
...runtimeConfig.app,
|
|
717
|
+
baseURL: runtimeConfig.app.baseURL.startsWith("./") ? runtimeConfig.app.baseURL.slice(1) : runtimeConfig.app.baseURL
|
|
718
|
+
},
|
|
719
|
+
nitro: {
|
|
720
|
+
envPrefix: "NUXT_",
|
|
721
|
+
...runtimeConfig.nitro
|
|
722
|
+
}
|
|
723
|
+
};
|
|
724
|
+
} },
|
|
725
|
+
routeRules: { $resolve: async (val, get) => {
|
|
726
|
+
return {
|
|
727
|
+
...await get("routeRules"),
|
|
728
|
+
...val && typeof val === "object" ? val : {}
|
|
729
|
+
};
|
|
730
|
+
} }
|
|
731
|
+
},
|
|
732
|
+
routeRules: {},
|
|
733
|
+
serverHandlers: [],
|
|
734
|
+
devServerHandlers: []
|
|
953
735
|
});
|
|
954
736
|
|
|
737
|
+
//#endregion
|
|
738
|
+
//#region src/config/postcss.ts
|
|
955
739
|
const ensureItemIsLast = (item) => (arr) => {
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
|
|
740
|
+
const index = arr.indexOf(item);
|
|
741
|
+
if (index !== -1) {
|
|
742
|
+
arr.splice(index, 1);
|
|
743
|
+
arr.push(item);
|
|
744
|
+
}
|
|
745
|
+
return arr;
|
|
962
746
|
};
|
|
963
747
|
const orderPresets = {
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
|
|
748
|
+
cssnanoLast: ensureItemIsLast("cssnano"),
|
|
749
|
+
autoprefixerLast: ensureItemIsLast("autoprefixer"),
|
|
750
|
+
autoprefixerAndCssnanoLast(names) {
|
|
751
|
+
return orderPresets.cssnanoLast(orderPresets.autoprefixerLast(names));
|
|
752
|
+
}
|
|
969
753
|
};
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
plugins: {
|
|
990
|
-
autoprefixer: {},
|
|
991
|
-
cssnano: {
|
|
992
|
-
$resolve: async (val, get) => {
|
|
993
|
-
if (val || val === false) {
|
|
994
|
-
return val;
|
|
995
|
-
}
|
|
996
|
-
if (await get("dev")) {
|
|
997
|
-
return false;
|
|
998
|
-
}
|
|
999
|
-
return {};
|
|
1000
|
-
}
|
|
1001
|
-
}
|
|
1002
|
-
}
|
|
1003
|
-
}
|
|
1004
|
-
});
|
|
754
|
+
var postcss_default = defineResolvers({ postcss: {
|
|
755
|
+
order: { $resolve: (val) => {
|
|
756
|
+
if (typeof val === "string") {
|
|
757
|
+
if (!(val in orderPresets)) throw new Error(`[nuxt] Unknown PostCSS order preset: ${val}`);
|
|
758
|
+
return orderPresets[val];
|
|
759
|
+
}
|
|
760
|
+
if (typeof val === "function") return val;
|
|
761
|
+
if (Array.isArray(val)) return val;
|
|
762
|
+
return orderPresets.autoprefixerAndCssnanoLast;
|
|
763
|
+
} },
|
|
764
|
+
plugins: {
|
|
765
|
+
autoprefixer: {},
|
|
766
|
+
cssnano: { $resolve: async (val, get) => {
|
|
767
|
+
if (val || val === false) return val;
|
|
768
|
+
if (await get("dev")) return false;
|
|
769
|
+
return {};
|
|
770
|
+
} }
|
|
771
|
+
}
|
|
772
|
+
} });
|
|
1005
773
|
|
|
1006
|
-
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
}
|
|
1013
|
-
});
|
|
774
|
+
//#endregion
|
|
775
|
+
//#region src/config/router.ts
|
|
776
|
+
var router_default = defineResolvers({ router: { options: {
|
|
777
|
+
hashMode: false,
|
|
778
|
+
scrollBehaviorType: "auto"
|
|
779
|
+
} } });
|
|
1014
780
|
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
typeCheck: false,
|
|
1050
|
-
tsConfig: {},
|
|
1051
|
-
shim: false
|
|
1052
|
-
}
|
|
1053
|
-
});
|
|
781
|
+
//#endregion
|
|
782
|
+
//#region src/config/typescript.ts
|
|
783
|
+
var typescript_default = defineResolvers({ typescript: {
|
|
784
|
+
strict: true,
|
|
785
|
+
builder: { $resolve: (val) => {
|
|
786
|
+
if (typeof val === "string" && new Set([
|
|
787
|
+
"vite",
|
|
788
|
+
"webpack",
|
|
789
|
+
"rspack",
|
|
790
|
+
"shared"
|
|
791
|
+
]).has(val)) return val;
|
|
792
|
+
if (val === false) return false;
|
|
793
|
+
return null;
|
|
794
|
+
} },
|
|
795
|
+
hoist: { $resolve: (val) => {
|
|
796
|
+
const defaults = [
|
|
797
|
+
"@unhead/vue",
|
|
798
|
+
"@nuxt/devtools",
|
|
799
|
+
"vue",
|
|
800
|
+
"@vue/runtime-core",
|
|
801
|
+
"@vue/compiler-sfc",
|
|
802
|
+
"vue-router",
|
|
803
|
+
"vue-router/auto-routes",
|
|
804
|
+
"unplugin-vue-router/client",
|
|
805
|
+
"@nuxt/schema",
|
|
806
|
+
"nuxt"
|
|
807
|
+
];
|
|
808
|
+
return val === false ? [] : Array.isArray(val) ? val.concat(defaults) : defaults;
|
|
809
|
+
} },
|
|
810
|
+
includeWorkspace: false,
|
|
811
|
+
typeCheck: false,
|
|
812
|
+
tsConfig: {},
|
|
813
|
+
shim: false
|
|
814
|
+
} });
|
|
1054
815
|
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
|
|
1083
|
-
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
|
|
1094
|
-
|
|
1095
|
-
|
|
1096
|
-
|
|
1097
|
-
|
|
1098
|
-
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
|
|
1126
|
-
|
|
1127
|
-
|
|
1128
|
-
|
|
1129
|
-
|
|
1130
|
-
|
|
1131
|
-
|
|
1132
|
-
exclude: {
|
|
1133
|
-
$resolve: (val) => [
|
|
1134
|
-
...Array.isArray(val) ? val : [],
|
|
1135
|
-
"vue-demi"
|
|
1136
|
-
]
|
|
1137
|
-
}
|
|
1138
|
-
},
|
|
1139
|
-
esbuild: {
|
|
1140
|
-
$resolve: async (val, get) => {
|
|
1141
|
-
return defu(val && typeof val === "object" ? val : {}, await get("esbuild.options"));
|
|
1142
|
-
}
|
|
1143
|
-
},
|
|
1144
|
-
clearScreen: true,
|
|
1145
|
-
build: {
|
|
1146
|
-
assetsDir: {
|
|
1147
|
-
$resolve: async (val, get) => typeof val === "string" ? val : (await get("app")).buildAssetsDir?.replace(/^\/+/, "")
|
|
1148
|
-
},
|
|
1149
|
-
emptyOutDir: false
|
|
1150
|
-
},
|
|
1151
|
-
server: {
|
|
1152
|
-
fs: {
|
|
1153
|
-
allow: {
|
|
1154
|
-
$resolve: async (val, get) => {
|
|
1155
|
-
const [buildDir, srcDir, rootDir, workspaceDir] = await Promise.all([get("buildDir"), get("srcDir"), get("rootDir"), get("workspaceDir")]);
|
|
1156
|
-
return [.../* @__PURE__ */ new Set([
|
|
1157
|
-
buildDir,
|
|
1158
|
-
srcDir,
|
|
1159
|
-
rootDir,
|
|
1160
|
-
workspaceDir,
|
|
1161
|
-
...Array.isArray(val) ? val : []
|
|
1162
|
-
])];
|
|
1163
|
-
}
|
|
1164
|
-
}
|
|
1165
|
-
}
|
|
1166
|
-
},
|
|
1167
|
-
cacheDir: {
|
|
1168
|
-
$resolve: async (val, get) => typeof val === "string" ? val : resolve(await get("rootDir"), "node_modules/.cache/vite")
|
|
1169
|
-
}
|
|
1170
|
-
}
|
|
1171
|
-
});
|
|
816
|
+
//#endregion
|
|
817
|
+
//#region src/config/vite.ts
|
|
818
|
+
var vite_default = defineResolvers({ vite: {
|
|
819
|
+
root: { $resolve: async (val, get) => typeof val === "string" ? val : await get("srcDir") },
|
|
820
|
+
mode: { $resolve: async (val, get) => typeof val === "string" ? val : await get("dev") ? "development" : "production" },
|
|
821
|
+
define: { $resolve: async (_val, get) => {
|
|
822
|
+
const [isDev, isDebug$1] = await Promise.all([get("dev"), get("debug")]);
|
|
823
|
+
return {
|
|
824
|
+
"__VUE_PROD_HYDRATION_MISMATCH_DETAILS__": Boolean(isDebug$1 && (isDebug$1 === true || isDebug$1.hydration)),
|
|
825
|
+
"process.dev": isDev,
|
|
826
|
+
"import.meta.dev": isDev,
|
|
827
|
+
"process.test": isTest,
|
|
828
|
+
"import.meta.test": isTest,
|
|
829
|
+
..._val && typeof _val === "object" ? _val : {}
|
|
830
|
+
};
|
|
831
|
+
} },
|
|
832
|
+
resolve: { extensions: [
|
|
833
|
+
".mjs",
|
|
834
|
+
".js",
|
|
835
|
+
".ts",
|
|
836
|
+
".jsx",
|
|
837
|
+
".tsx",
|
|
838
|
+
".json",
|
|
839
|
+
".vue"
|
|
840
|
+
] },
|
|
841
|
+
publicDir: { $resolve: (val) => {
|
|
842
|
+
if (val) console.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`.");
|
|
843
|
+
return false;
|
|
844
|
+
} },
|
|
845
|
+
vue: {
|
|
846
|
+
isProduction: { $resolve: async (val, get) => typeof val === "boolean" ? val : !await get("dev") },
|
|
847
|
+
template: {
|
|
848
|
+
compilerOptions: { $resolve: async (val, get) => val ?? (await get("vue")).compilerOptions },
|
|
849
|
+
transformAssetUrls: { $resolve: async (val, get) => val ?? (await get("vue")).transformAssetUrls }
|
|
850
|
+
},
|
|
851
|
+
script: { hoistStatic: { $resolve: async (val, get) => typeof val === "boolean" ? val : (await get("vue")).compilerOptions?.hoistStatic } },
|
|
852
|
+
features: { propsDestructure: { $resolve: async (val, get) => {
|
|
853
|
+
if (typeof val === "boolean") return val;
|
|
854
|
+
const vueOptions = await get("vue") || {};
|
|
855
|
+
return Boolean(vueOptions.script?.propsDestructure ?? vueOptions.propsDestructure);
|
|
856
|
+
} } }
|
|
857
|
+
},
|
|
858
|
+
vueJsx: { $resolve: async (val, get) => {
|
|
859
|
+
return {
|
|
860
|
+
isCustomElement: (await get("vue")).compilerOptions?.isCustomElement,
|
|
861
|
+
...typeof val === "object" ? val : {}
|
|
862
|
+
};
|
|
863
|
+
} },
|
|
864
|
+
optimizeDeps: {
|
|
865
|
+
esbuildOptions: { $resolve: async (val, get) => defu(val && typeof val === "object" ? val : {}, await get("esbuild.options")) },
|
|
866
|
+
exclude: { $resolve: (val) => [...Array.isArray(val) ? val : [], "vue-demi"] }
|
|
867
|
+
},
|
|
868
|
+
esbuild: { $resolve: async (val, get) => {
|
|
869
|
+
return defu(val && typeof val === "object" ? val : {}, await get("esbuild.options"));
|
|
870
|
+
} },
|
|
871
|
+
clearScreen: true,
|
|
872
|
+
build: {
|
|
873
|
+
assetsDir: { $resolve: async (val, get) => typeof val === "string" ? val : (await get("app")).buildAssetsDir?.replace(/^\/+/, "") },
|
|
874
|
+
emptyOutDir: false
|
|
875
|
+
},
|
|
876
|
+
server: { fs: { allow: { $resolve: async (val, get) => {
|
|
877
|
+
const [buildDir, srcDir, rootDir, workspaceDir] = await Promise.all([
|
|
878
|
+
get("buildDir"),
|
|
879
|
+
get("srcDir"),
|
|
880
|
+
get("rootDir"),
|
|
881
|
+
get("workspaceDir")
|
|
882
|
+
]);
|
|
883
|
+
return [...new Set([
|
|
884
|
+
buildDir,
|
|
885
|
+
srcDir,
|
|
886
|
+
rootDir,
|
|
887
|
+
workspaceDir,
|
|
888
|
+
...Array.isArray(val) ? val : []
|
|
889
|
+
])];
|
|
890
|
+
} } } },
|
|
891
|
+
cacheDir: { $resolve: async (val, get) => typeof val === "string" ? val : resolve(await get("rootDir"), "node_modules/.cache/vite") }
|
|
892
|
+
} });
|
|
1172
893
|
|
|
1173
|
-
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
|
|
1187
|
-
|
|
1188
|
-
|
|
1189
|
-
|
|
1190
|
-
|
|
1191
|
-
|
|
1192
|
-
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
|
|
1197
|
-
|
|
1198
|
-
|
|
1199
|
-
|
|
1200
|
-
|
|
1201
|
-
|
|
1202
|
-
|
|
1203
|
-
|
|
1204
|
-
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
|
|
1208
|
-
|
|
1209
|
-
|
|
1210
|
-
|
|
1211
|
-
|
|
1212
|
-
|
|
1213
|
-
|
|
1214
|
-
|
|
1215
|
-
|
|
1216
|
-
|
|
1217
|
-
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
|
|
1221
|
-
|
|
1222
|
-
|
|
1223
|
-
|
|
1224
|
-
|
|
1225
|
-
|
|
1226
|
-
|
|
1227
|
-
|
|
1228
|
-
|
|
1229
|
-
|
|
1230
|
-
|
|
1231
|
-
|
|
1232
|
-
|
|
1233
|
-
|
|
1234
|
-
|
|
1235
|
-
|
|
1236
|
-
|
|
1237
|
-
|
|
1238
|
-
|
|
1239
|
-
|
|
1240
|
-
|
|
1241
|
-
|
|
1242
|
-
|
|
1243
|
-
|
|
1244
|
-
|
|
1245
|
-
|
|
1246
|
-
|
|
1247
|
-
|
|
1248
|
-
|
|
1249
|
-
|
|
1250
|
-
|
|
1251
|
-
|
|
1252
|
-
|
|
1253
|
-
|
|
1254
|
-
|
|
1255
|
-
|
|
1256
|
-
|
|
1257
|
-
|
|
1258
|
-
|
|
1259
|
-
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
if (val === false || val && typeof val === "object") {
|
|
1270
|
-
return val;
|
|
1271
|
-
}
|
|
1272
|
-
const extractCSS = await get("build.extractCSS");
|
|
1273
|
-
return extractCSS ? {} : false;
|
|
1274
|
-
}
|
|
1275
|
-
},
|
|
1276
|
-
optimization: {
|
|
1277
|
-
runtimeChunk: "single",
|
|
1278
|
-
minimize: {
|
|
1279
|
-
$resolve: async (val, get) => typeof val === "boolean" ? val : !await get("dev")
|
|
1280
|
-
},
|
|
1281
|
-
minimizer: void 0,
|
|
1282
|
-
splitChunks: {
|
|
1283
|
-
chunks: "all",
|
|
1284
|
-
automaticNameDelimiter: "/",
|
|
1285
|
-
cacheGroups: {}
|
|
1286
|
-
}
|
|
1287
|
-
},
|
|
1288
|
-
postcss: {
|
|
1289
|
-
postcssOptions: {
|
|
1290
|
-
plugins: {
|
|
1291
|
-
$resolve: async (val, get) => val && typeof val === "object" ? val : await get("postcss.plugins")
|
|
1292
|
-
}
|
|
1293
|
-
}
|
|
1294
|
-
},
|
|
1295
|
-
devMiddleware: {
|
|
1296
|
-
stats: "none"
|
|
1297
|
-
},
|
|
1298
|
-
hotMiddleware: {},
|
|
1299
|
-
friendlyErrors: true,
|
|
1300
|
-
warningIgnoreFilters: [],
|
|
1301
|
-
experiments: {}
|
|
1302
|
-
}
|
|
1303
|
-
});
|
|
894
|
+
//#endregion
|
|
895
|
+
//#region src/config/webpack.ts
|
|
896
|
+
var webpack_default = defineResolvers({ webpack: {
|
|
897
|
+
analyze: { $resolve: async (val, get) => {
|
|
898
|
+
return defu(typeof val === "boolean" ? { enabled: val } : val && typeof val === "object" ? val : {}, await get("build.analyze"));
|
|
899
|
+
} },
|
|
900
|
+
profile: process.argv.includes("--profile"),
|
|
901
|
+
extractCSS: true,
|
|
902
|
+
cssSourceMap: { $resolve: async (val, get) => typeof val === "boolean" ? val : await get("dev") },
|
|
903
|
+
serverURLPolyfill: "url",
|
|
904
|
+
filenames: {
|
|
905
|
+
app: ({ isDev }) => isDev ? "[name].js" : "[contenthash:7].js",
|
|
906
|
+
chunk: ({ isDev }) => isDev ? "[name].js" : "[contenthash:7].js",
|
|
907
|
+
css: ({ isDev }) => isDev ? "[name].css" : "css/[contenthash:7].css",
|
|
908
|
+
img: ({ isDev }) => isDev ? "[path][name].[ext]" : "img/[name].[contenthash:7].[ext]",
|
|
909
|
+
font: ({ isDev }) => isDev ? "[path][name].[ext]" : "fonts/[name].[contenthash:7].[ext]",
|
|
910
|
+
video: ({ isDev }) => isDev ? "[path][name].[ext]" : "videos/[name].[contenthash:7].[ext]"
|
|
911
|
+
},
|
|
912
|
+
loaders: {
|
|
913
|
+
$resolve: async (val, get) => {
|
|
914
|
+
const loaders = val && typeof val === "object" ? val : {};
|
|
915
|
+
for (const name of [
|
|
916
|
+
"css",
|
|
917
|
+
"cssModules",
|
|
918
|
+
"less",
|
|
919
|
+
"sass",
|
|
920
|
+
"scss",
|
|
921
|
+
"stylus",
|
|
922
|
+
"vueStyle"
|
|
923
|
+
]) {
|
|
924
|
+
const loader = loaders[name];
|
|
925
|
+
if (loader && loader.sourceMap === void 0) loader.sourceMap = Boolean(await get("build.cssSourceMap"));
|
|
926
|
+
}
|
|
927
|
+
return loaders;
|
|
928
|
+
},
|
|
929
|
+
esbuild: { $resolve: async (val, get) => {
|
|
930
|
+
return defu(val && typeof val === "object" ? val : {}, await get("esbuild.options"));
|
|
931
|
+
} },
|
|
932
|
+
file: {
|
|
933
|
+
esModule: false,
|
|
934
|
+
limit: 1e3
|
|
935
|
+
},
|
|
936
|
+
fontUrl: {
|
|
937
|
+
esModule: false,
|
|
938
|
+
limit: 1e3
|
|
939
|
+
},
|
|
940
|
+
imgUrl: {
|
|
941
|
+
esModule: false,
|
|
942
|
+
limit: 1e3
|
|
943
|
+
},
|
|
944
|
+
pugPlain: {},
|
|
945
|
+
vue: {
|
|
946
|
+
transformAssetUrls: { $resolve: async (val, get) => val ?? await get("vue.transformAssetUrls") },
|
|
947
|
+
compilerOptions: { $resolve: async (val, get) => val ?? await get("vue.compilerOptions") },
|
|
948
|
+
propsDestructure: { $resolve: async (val, get) => Boolean(val ?? await get("vue.propsDestructure")) }
|
|
949
|
+
},
|
|
950
|
+
css: {
|
|
951
|
+
importLoaders: 0,
|
|
952
|
+
url: { filter: (url, _resourcePath) => url[0] !== "/" },
|
|
953
|
+
esModule: false
|
|
954
|
+
},
|
|
955
|
+
cssModules: {
|
|
956
|
+
importLoaders: 0,
|
|
957
|
+
url: { filter: (url, _resourcePath) => url[0] !== "/" },
|
|
958
|
+
esModule: false,
|
|
959
|
+
modules: { localIdentName: "[local]_[hash:base64:5]" }
|
|
960
|
+
},
|
|
961
|
+
less: {},
|
|
962
|
+
sass: { sassOptions: { indentedSyntax: true } },
|
|
963
|
+
scss: {},
|
|
964
|
+
stylus: {},
|
|
965
|
+
vueStyle: {}
|
|
966
|
+
},
|
|
967
|
+
plugins: [],
|
|
968
|
+
aggressiveCodeRemoval: false,
|
|
969
|
+
optimizeCSS: { $resolve: async (val, get) => {
|
|
970
|
+
if (val === false || val && typeof val === "object") return val;
|
|
971
|
+
return await get("build.extractCSS") ? {} : false;
|
|
972
|
+
} },
|
|
973
|
+
optimization: {
|
|
974
|
+
runtimeChunk: "single",
|
|
975
|
+
minimize: { $resolve: async (val, get) => typeof val === "boolean" ? val : !await get("dev") },
|
|
976
|
+
minimizer: void 0,
|
|
977
|
+
splitChunks: {
|
|
978
|
+
chunks: "all",
|
|
979
|
+
automaticNameDelimiter: "/",
|
|
980
|
+
cacheGroups: {}
|
|
981
|
+
}
|
|
982
|
+
},
|
|
983
|
+
postcss: { postcssOptions: { plugins: { $resolve: async (val, get) => val && typeof val === "object" ? val : await get("postcss.plugins") } } },
|
|
984
|
+
devMiddleware: { stats: "none" },
|
|
985
|
+
hotMiddleware: {},
|
|
986
|
+
friendlyErrors: true,
|
|
987
|
+
warningIgnoreFilters: [],
|
|
988
|
+
experiments: {}
|
|
989
|
+
} });
|
|
1304
990
|
|
|
1305
|
-
|
|
1306
|
-
|
|
1307
|
-
|
|
1308
|
-
|
|
1309
|
-
|
|
1310
|
-
|
|
1311
|
-
|
|
1312
|
-
|
|
1313
|
-
|
|
1314
|
-
|
|
1315
|
-
|
|
1316
|
-
|
|
1317
|
-
|
|
1318
|
-
|
|
1319
|
-
|
|
1320
|
-
|
|
1321
|
-
|
|
991
|
+
//#endregion
|
|
992
|
+
//#region src/config/index.ts
|
|
993
|
+
var config_default = {
|
|
994
|
+
...adhoc_default,
|
|
995
|
+
...app_default,
|
|
996
|
+
...build_default,
|
|
997
|
+
...common_default,
|
|
998
|
+
...dev_default,
|
|
999
|
+
...experimental_default,
|
|
1000
|
+
...generate_default,
|
|
1001
|
+
...internal_default,
|
|
1002
|
+
...nitro_default,
|
|
1003
|
+
...postcss_default,
|
|
1004
|
+
...router_default,
|
|
1005
|
+
...typescript_default,
|
|
1006
|
+
...esbuild_default,
|
|
1007
|
+
...oxc_default,
|
|
1008
|
+
...vite_default,
|
|
1009
|
+
...webpack_default
|
|
1322
1010
|
};
|
|
1323
1011
|
|
|
1324
|
-
|
|
1012
|
+
//#endregion
|
|
1013
|
+
export { config_default as NuxtConfigSchema };
|