@vitejs/devtools-vite 0.0.0-alpha.20 → 0.0.0-alpha.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +96 -4
- package/dist/index.mjs +44 -44
- package/dist/nitro.json +1 -1
- package/dist/public/200.html +1 -1
- package/dist/public/404.html +1 -1
- package/dist/public/_nuxt/DDTVi-ZV.js +33 -0
- package/dist/public/_nuxt/{gdDtDkxO.js → OEdZKRk6.js} +1 -1
- package/dist/public/_nuxt/builds/latest.json +1 -1
- package/dist/public/_nuxt/builds/meta/92f58f41-f5d8-4eb9-8df8-90c37ec07cf8.json +1 -0
- package/dist/public/_nuxt/{entry.D_RYm3_j.css → entry.BVWKKagY.css} +1 -1
- package/dist/public/_nuxt/error-404.DgDpC6Er.css +1 -0
- package/dist/public/_nuxt/error-500.CDOeHf8w.css +1 -0
- package/dist/public/_nuxt/{4_YkMRLM.js → jVJLbHmI.js} +1 -1
- package/dist/public/_nuxt/wlAuDjxN.js +4 -0
- package/dist/public/index.html +1 -1
- package/package.json +6 -6
- package/dist/public/_nuxt/BReKREoN.js +0 -33
- package/dist/public/_nuxt/Ds1hqjlp.js +0 -4
- package/dist/public/_nuxt/builds/meta/57a53e55-aaa8-4c2f-ab28-ef6c47fc2198.json +0 -1
- package/dist/public/_nuxt/error-404.DSMcJjv-.css +0 -1
- package/dist/public/_nuxt/error-500.wvWNQOmL.css +0 -1
package/dist/index.d.mts
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
|
+
import { BirpcReturn } from "birpc";
|
|
1
2
|
import { RpcFunctionsCollector, RpcFunctionsCollectorBase } from "birpc-x";
|
|
3
|
+
import { WebSocket } from "ws";
|
|
2
4
|
import { Plugin, ResolvedConfig, ViteDevServer } from "vite";
|
|
3
5
|
import { Raw } from "vue";
|
|
4
|
-
import { BirpcReturn } from "birpc";
|
|
5
6
|
import { ChildProcess } from "node:child_process";
|
|
6
7
|
|
|
7
8
|
//#region ../kit/src/types/events.d.ts
|
|
@@ -162,7 +163,7 @@ interface DevToolsViewCustomRender extends DevToolsDockEntryBase {
|
|
|
162
163
|
}
|
|
163
164
|
interface DevToolsViewBuiltin extends DevToolsDockEntryBase {
|
|
164
165
|
type: '~builtin';
|
|
165
|
-
id: '~terminals' | '~logs';
|
|
166
|
+
id: '~terminals' | '~logs' | '~client-auth-notice';
|
|
166
167
|
}
|
|
167
168
|
type DevToolsDockUserEntry = DevToolsViewIframe | DevToolsViewAction | DevToolsViewCustomRender | DevToolsViewLauncher;
|
|
168
169
|
type DevToolsDockEntry = DevToolsDockUserEntry | DevToolsViewBuiltin;
|
|
@@ -183,10 +184,26 @@ interface DevToolsRpcClient {
|
|
|
183
184
|
* The events of the client
|
|
184
185
|
*/
|
|
185
186
|
events: EventEmitter<RpcClientEvents>;
|
|
187
|
+
/**
|
|
188
|
+
* Whether the client is trusted
|
|
189
|
+
*/
|
|
190
|
+
readonly isTrusted: boolean | null;
|
|
186
191
|
/**
|
|
187
192
|
* The connection meta
|
|
188
193
|
*/
|
|
189
194
|
readonly connectionMeta: ConnectionMeta;
|
|
195
|
+
/**
|
|
196
|
+
* Return a promise that resolves when the client is trusted
|
|
197
|
+
*
|
|
198
|
+
* Rejects with an error if the timeout is reached
|
|
199
|
+
*
|
|
200
|
+
* @param timeout - The timeout in milliseconds, default to 60 seconds
|
|
201
|
+
*/
|
|
202
|
+
ensureTrusted: (timeout?: number) => Promise<boolean>;
|
|
203
|
+
/**
|
|
204
|
+
* Request trust from the server
|
|
205
|
+
*/
|
|
206
|
+
requestTrust: () => Promise<boolean>;
|
|
190
207
|
/**
|
|
191
208
|
* Call a RPC function on the server
|
|
192
209
|
*/
|
|
@@ -260,6 +277,12 @@ interface DocksEntriesContext {
|
|
|
260
277
|
* @returns Whether the selection was changed successfully
|
|
261
278
|
*/
|
|
262
279
|
switchEntry: (id?: string | null) => Promise<boolean>;
|
|
280
|
+
/**
|
|
281
|
+
* Toggle the selected dock entry
|
|
282
|
+
*
|
|
283
|
+
* @returns Whether the selection was changed successfully
|
|
284
|
+
*/
|
|
285
|
+
toggleEntry: (id: string) => Promise<boolean>;
|
|
263
286
|
}
|
|
264
287
|
interface DockEntryState {
|
|
265
288
|
entryMeta: DevToolsDockEntry;
|
|
@@ -277,7 +300,9 @@ interface DockEntryStateEvents {
|
|
|
277
300
|
'dom:panel:mounted': (panel: HTMLDivElement) => void;
|
|
278
301
|
'dom:iframe:mounted': (iframe: HTMLIFrameElement) => void;
|
|
279
302
|
}
|
|
280
|
-
interface RpcClientEvents {
|
|
303
|
+
interface RpcClientEvents {
|
|
304
|
+
'rpc:is-trusted:updated': (isTrusted: boolean) => void;
|
|
305
|
+
}
|
|
281
306
|
//#endregion
|
|
282
307
|
//#region ../kit/src/client/client-script.d.ts
|
|
283
308
|
/**
|
|
@@ -362,14 +387,47 @@ interface DevToolsPluginOptions {
|
|
|
362
387
|
setup: (context: DevToolsNodeContext) => void | Promise<void>;
|
|
363
388
|
}
|
|
364
389
|
interface DevToolsNodeContext {
|
|
390
|
+
/**
|
|
391
|
+
* Workspace root directory of Vite DevTools
|
|
392
|
+
*/
|
|
393
|
+
readonly workspaceRoot: string;
|
|
394
|
+
/**
|
|
395
|
+
* Current working directory of Vite DevTools
|
|
396
|
+
*/
|
|
365
397
|
readonly cwd: string;
|
|
398
|
+
/**
|
|
399
|
+
* Current mode of Vite DevTools
|
|
400
|
+
* - 'dev' - when Vite DevTools is running in dev mode
|
|
401
|
+
* - 'build' - when Vite DevTools is running in build mode (no server)
|
|
402
|
+
*/
|
|
366
403
|
readonly mode: 'dev' | 'build';
|
|
404
|
+
/**
|
|
405
|
+
* Resolved Vite configuration
|
|
406
|
+
*/
|
|
367
407
|
readonly viteConfig: ResolvedConfig;
|
|
408
|
+
/**
|
|
409
|
+
* Vite dev server instance (only available in dev mode)
|
|
410
|
+
*/
|
|
368
411
|
readonly viteServer?: ViteDevServer;
|
|
412
|
+
/**
|
|
413
|
+
* RPC functions host, for registering server-side RPC functions and calling client-side RPC functions
|
|
414
|
+
*/
|
|
369
415
|
rpc: RpcFunctionsHost;
|
|
416
|
+
/**
|
|
417
|
+
* Docks host, for registering dock entries
|
|
418
|
+
*/
|
|
370
419
|
docks: DevToolsDockHost;
|
|
420
|
+
/**
|
|
421
|
+
* Views host, for registering static views
|
|
422
|
+
*/
|
|
371
423
|
views: DevToolsViewHost;
|
|
424
|
+
/**
|
|
425
|
+
* Utils for the node context
|
|
426
|
+
*/
|
|
372
427
|
utils: DevToolsNodeUtils;
|
|
428
|
+
/**
|
|
429
|
+
* Terminals host, for registering terminal sessions and streaming terminal output
|
|
430
|
+
*/
|
|
373
431
|
terminals: DevToolsTerminalHost;
|
|
374
432
|
}
|
|
375
433
|
interface DevToolsNodeUtils {
|
|
@@ -387,8 +445,27 @@ interface ConnectionMeta {
|
|
|
387
445
|
}
|
|
388
446
|
//#endregion
|
|
389
447
|
//#region ../kit/src/types/rpc.d.ts
|
|
448
|
+
interface DevToolsNodeRpcSessionMeta {
|
|
449
|
+
id: number;
|
|
450
|
+
ws?: WebSocket;
|
|
451
|
+
clientAuthId?: string;
|
|
452
|
+
isTrusted?: boolean;
|
|
453
|
+
}
|
|
454
|
+
interface DevToolsNodeRpcSession {
|
|
455
|
+
meta: DevToolsNodeRpcSessionMeta;
|
|
456
|
+
rpc: BirpcReturn<DevToolsRpcClientFunctions, DevToolsRpcServerFunctions, false>;
|
|
457
|
+
}
|
|
390
458
|
type RpcFunctionsHost = RpcFunctionsCollectorBase<DevToolsRpcServerFunctions, DevToolsNodeContext> & {
|
|
391
|
-
|
|
459
|
+
/**
|
|
460
|
+
* Broadcast a message to all connected clients
|
|
461
|
+
*/
|
|
462
|
+
broadcast: <T extends keyof DevToolsRpcClientFunctions, Args extends Parameters<DevToolsRpcClientFunctions[T]>>(name: T, ...args: Args) => Promise<(Awaited<ReturnType<DevToolsRpcClientFunctions[T]>> | undefined)[]>;
|
|
463
|
+
/**
|
|
464
|
+
* Get the current RPC client
|
|
465
|
+
*
|
|
466
|
+
* Available in RPC functions to get the current RPC client
|
|
467
|
+
*/
|
|
468
|
+
getCurrentRpcSession: () => DevToolsNodeRpcSession | undefined;
|
|
392
469
|
};
|
|
393
470
|
//#endregion
|
|
394
471
|
//#region ../kit/src/types/vite-augment.d.ts
|
|
@@ -396,6 +473,21 @@ declare module 'vite' {
|
|
|
396
473
|
interface Plugin {
|
|
397
474
|
devtools?: DevToolsPluginOptions;
|
|
398
475
|
}
|
|
476
|
+
interface UserConfig {
|
|
477
|
+
devtools?: ViteConfigDevtoolsOptions;
|
|
478
|
+
}
|
|
479
|
+
}
|
|
480
|
+
interface ViteConfigDevtoolsOptions {
|
|
481
|
+
/**
|
|
482
|
+
* Disable client authentication.
|
|
483
|
+
*
|
|
484
|
+
* Beware that if you disable client authentication,
|
|
485
|
+
* any browsers can connect to the devtools and access to your server and filesystem.
|
|
486
|
+
* (including other devices, if you open server `host` option to LAN or WAN)
|
|
487
|
+
*
|
|
488
|
+
* @default true
|
|
489
|
+
*/
|
|
490
|
+
clientAuth?: boolean;
|
|
399
491
|
}
|
|
400
492
|
interface PluginWithDevTools extends Plugin {
|
|
401
493
|
devtools?: DevToolsPluginOptions;
|
package/dist/index.mjs
CHANGED
|
@@ -1329,7 +1329,7 @@ var require_lib$12 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
1329
1329
|
}));
|
|
1330
1330
|
|
|
1331
1331
|
//#endregion
|
|
1332
|
-
//#region ../../node_modules/.pnpm/@pnpm+manifest-utils@1002.0.
|
|
1332
|
+
//#region ../../node_modules/.pnpm/@pnpm+manifest-utils@1002.0.3_@pnpm+logger@1001.0.1/node_modules/@pnpm/manifest-utils/lib/getAllDependenciesFromManifest.js
|
|
1333
1333
|
var require_getAllDependenciesFromManifest = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
1334
1334
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1335
1335
|
exports.getAllDependenciesFromManifest = getAllDependenciesFromManifest;
|
|
@@ -1343,7 +1343,7 @@ var require_getAllDependenciesFromManifest = /* @__PURE__ */ __commonJSMin(((exp
|
|
|
1343
1343
|
}));
|
|
1344
1344
|
|
|
1345
1345
|
//#endregion
|
|
1346
|
-
//#region ../../node_modules/.pnpm/@pnpm+manifest-utils@1002.0.
|
|
1346
|
+
//#region ../../node_modules/.pnpm/@pnpm+manifest-utils@1002.0.3_@pnpm+logger@1001.0.1/node_modules/@pnpm/manifest-utils/lib/getAllUniqueSpecs.js
|
|
1347
1347
|
var require_getAllUniqueSpecs = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
1348
1348
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1349
1349
|
exports.getAllUniqueSpecs = getAllUniqueSpecs;
|
|
@@ -1368,7 +1368,7 @@ var require_getAllUniqueSpecs = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
1368
1368
|
}));
|
|
1369
1369
|
|
|
1370
1370
|
//#endregion
|
|
1371
|
-
//#region ../../node_modules/.pnpm/@pnpm+manifest-utils@1002.0.
|
|
1371
|
+
//#region ../../node_modules/.pnpm/@pnpm+manifest-utils@1002.0.3_@pnpm+logger@1001.0.1/node_modules/@pnpm/manifest-utils/lib/getSpecFromPackageManifest.js
|
|
1372
1372
|
var require_getSpecFromPackageManifest = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
1373
1373
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1374
1374
|
exports.getSpecFromPackageManifest = getSpecFromPackageManifest;
|
|
@@ -1895,7 +1895,7 @@ var require_lib$11 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
1895
1895
|
}));
|
|
1896
1896
|
|
|
1897
1897
|
//#endregion
|
|
1898
|
-
//#region ../../node_modules/.pnpm/@pnpm+manifest-utils@1002.0.
|
|
1898
|
+
//#region ../../node_modules/.pnpm/@pnpm+manifest-utils@1002.0.3_@pnpm+logger@1001.0.1/node_modules/@pnpm/manifest-utils/lib/convertEnginesRuntimeToDependencies.js
|
|
1899
1899
|
var require_convertEnginesRuntimeToDependencies = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
1900
1900
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1901
1901
|
exports.convertEnginesRuntimeToDependencies = convertEnginesRuntimeToDependencies;
|
|
@@ -1920,7 +1920,7 @@ var require_convertEnginesRuntimeToDependencies = /* @__PURE__ */ __commonJSMin(
|
|
|
1920
1920
|
}));
|
|
1921
1921
|
|
|
1922
1922
|
//#endregion
|
|
1923
|
-
//#region ../../node_modules/.pnpm/@pnpm+core-loggers@1001.0.
|
|
1923
|
+
//#region ../../node_modules/.pnpm/@pnpm+core-loggers@1001.0.8_@pnpm+logger@1001.0.1/node_modules/@pnpm/core-loggers/lib/contextLogger.js
|
|
1924
1924
|
var require_contextLogger = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
1925
1925
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1926
1926
|
exports.contextLogger = void 0;
|
|
@@ -1929,7 +1929,7 @@ var require_contextLogger = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
1929
1929
|
}));
|
|
1930
1930
|
|
|
1931
1931
|
//#endregion
|
|
1932
|
-
//#region ../../node_modules/.pnpm/@pnpm+core-loggers@1001.0.
|
|
1932
|
+
//#region ../../node_modules/.pnpm/@pnpm+core-loggers@1001.0.8_@pnpm+logger@1001.0.1/node_modules/@pnpm/core-loggers/lib/deprecationLogger.js
|
|
1933
1933
|
var require_deprecationLogger = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
1934
1934
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1935
1935
|
exports.deprecationLogger = void 0;
|
|
@@ -1938,7 +1938,7 @@ var require_deprecationLogger = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
1938
1938
|
}));
|
|
1939
1939
|
|
|
1940
1940
|
//#endregion
|
|
1941
|
-
//#region ../../node_modules/.pnpm/@pnpm+core-loggers@1001.0.
|
|
1941
|
+
//#region ../../node_modules/.pnpm/@pnpm+core-loggers@1001.0.8_@pnpm+logger@1001.0.1/node_modules/@pnpm/core-loggers/lib/fetchingProgressLogger.js
|
|
1942
1942
|
var require_fetchingProgressLogger = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
1943
1943
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1944
1944
|
exports.fetchingProgressLogger = void 0;
|
|
@@ -1947,7 +1947,7 @@ var require_fetchingProgressLogger = /* @__PURE__ */ __commonJSMin(((exports) =>
|
|
|
1947
1947
|
}));
|
|
1948
1948
|
|
|
1949
1949
|
//#endregion
|
|
1950
|
-
//#region ../../node_modules/.pnpm/@pnpm+core-loggers@1001.0.
|
|
1950
|
+
//#region ../../node_modules/.pnpm/@pnpm+core-loggers@1001.0.8_@pnpm+logger@1001.0.1/node_modules/@pnpm/core-loggers/lib/hookLogger.js
|
|
1951
1951
|
var require_hookLogger = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
1952
1952
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1953
1953
|
exports.hookLogger = void 0;
|
|
@@ -1956,7 +1956,7 @@ var require_hookLogger = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
1956
1956
|
}));
|
|
1957
1957
|
|
|
1958
1958
|
//#endregion
|
|
1959
|
-
//#region ../../node_modules/.pnpm/@pnpm+core-loggers@1001.0.
|
|
1959
|
+
//#region ../../node_modules/.pnpm/@pnpm+core-loggers@1001.0.8_@pnpm+logger@1001.0.1/node_modules/@pnpm/core-loggers/lib/installCheckLogger.js
|
|
1960
1960
|
var require_installCheckLogger = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
1961
1961
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1962
1962
|
exports.installCheckLogger = void 0;
|
|
@@ -1965,7 +1965,7 @@ var require_installCheckLogger = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
1965
1965
|
}));
|
|
1966
1966
|
|
|
1967
1967
|
//#endregion
|
|
1968
|
-
//#region ../../node_modules/.pnpm/@pnpm+core-loggers@1001.0.
|
|
1968
|
+
//#region ../../node_modules/.pnpm/@pnpm+core-loggers@1001.0.8_@pnpm+logger@1001.0.1/node_modules/@pnpm/core-loggers/lib/installingConfigDeps.js
|
|
1969
1969
|
var require_installingConfigDeps = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
1970
1970
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1971
1971
|
exports.installingConfigDepsLogger = void 0;
|
|
@@ -1974,7 +1974,7 @@ var require_installingConfigDeps = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
1974
1974
|
}));
|
|
1975
1975
|
|
|
1976
1976
|
//#endregion
|
|
1977
|
-
//#region ../../node_modules/.pnpm/@pnpm+core-loggers@1001.0.
|
|
1977
|
+
//#region ../../node_modules/.pnpm/@pnpm+core-loggers@1001.0.8_@pnpm+logger@1001.0.1/node_modules/@pnpm/core-loggers/lib/ignoredScriptsLogger.js
|
|
1978
1978
|
var require_ignoredScriptsLogger = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
1979
1979
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1980
1980
|
exports.ignoredScriptsLogger = void 0;
|
|
@@ -1983,7 +1983,7 @@ var require_ignoredScriptsLogger = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
1983
1983
|
}));
|
|
1984
1984
|
|
|
1985
1985
|
//#endregion
|
|
1986
|
-
//#region ../../node_modules/.pnpm/@pnpm+core-loggers@1001.0.
|
|
1986
|
+
//#region ../../node_modules/.pnpm/@pnpm+core-loggers@1001.0.8_@pnpm+logger@1001.0.1/node_modules/@pnpm/core-loggers/lib/lifecycleLogger.js
|
|
1987
1987
|
var require_lifecycleLogger = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
1988
1988
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1989
1989
|
exports.lifecycleLogger = void 0;
|
|
@@ -1992,7 +1992,7 @@ var require_lifecycleLogger = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
1992
1992
|
}));
|
|
1993
1993
|
|
|
1994
1994
|
//#endregion
|
|
1995
|
-
//#region ../../node_modules/.pnpm/@pnpm+core-loggers@1001.0.
|
|
1995
|
+
//#region ../../node_modules/.pnpm/@pnpm+core-loggers@1001.0.8_@pnpm+logger@1001.0.1/node_modules/@pnpm/core-loggers/lib/linkLogger.js
|
|
1996
1996
|
var require_linkLogger = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
1997
1997
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1998
1998
|
exports.linkLogger = void 0;
|
|
@@ -2001,7 +2001,7 @@ var require_linkLogger = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
2001
2001
|
}));
|
|
2002
2002
|
|
|
2003
2003
|
//#endregion
|
|
2004
|
-
//#region ../../node_modules/.pnpm/@pnpm+core-loggers@1001.0.
|
|
2004
|
+
//#region ../../node_modules/.pnpm/@pnpm+core-loggers@1001.0.8_@pnpm+logger@1001.0.1/node_modules/@pnpm/core-loggers/lib/packageImportMethodLogger.js
|
|
2005
2005
|
var require_packageImportMethodLogger = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
2006
2006
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2007
2007
|
exports.packageImportMethodLogger = void 0;
|
|
@@ -2010,7 +2010,7 @@ var require_packageImportMethodLogger = /* @__PURE__ */ __commonJSMin(((exports)
|
|
|
2010
2010
|
}));
|
|
2011
2011
|
|
|
2012
2012
|
//#endregion
|
|
2013
|
-
//#region ../../node_modules/.pnpm/@pnpm+core-loggers@1001.0.
|
|
2013
|
+
//#region ../../node_modules/.pnpm/@pnpm+core-loggers@1001.0.8_@pnpm+logger@1001.0.1/node_modules/@pnpm/core-loggers/lib/packageManifestLogger.js
|
|
2014
2014
|
var require_packageManifestLogger = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
2015
2015
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2016
2016
|
exports.packageManifestLogger = void 0;
|
|
@@ -2019,7 +2019,7 @@ var require_packageManifestLogger = /* @__PURE__ */ __commonJSMin(((exports) =>
|
|
|
2019
2019
|
}));
|
|
2020
2020
|
|
|
2021
2021
|
//#endregion
|
|
2022
|
-
//#region ../../node_modules/.pnpm/@pnpm+core-loggers@1001.0.
|
|
2022
|
+
//#region ../../node_modules/.pnpm/@pnpm+core-loggers@1001.0.8_@pnpm+logger@1001.0.1/node_modules/@pnpm/core-loggers/lib/peerDependencyIssues.js
|
|
2023
2023
|
var require_peerDependencyIssues$1 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
2024
2024
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2025
2025
|
exports.peerDependencyIssuesLogger = void 0;
|
|
@@ -2028,7 +2028,7 @@ var require_peerDependencyIssues$1 = /* @__PURE__ */ __commonJSMin(((exports) =>
|
|
|
2028
2028
|
}));
|
|
2029
2029
|
|
|
2030
2030
|
//#endregion
|
|
2031
|
-
//#region ../../node_modules/.pnpm/@pnpm+core-loggers@1001.0.
|
|
2031
|
+
//#region ../../node_modules/.pnpm/@pnpm+core-loggers@1001.0.8_@pnpm+logger@1001.0.1/node_modules/@pnpm/core-loggers/lib/progressLogger.js
|
|
2032
2032
|
var require_progressLogger = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
2033
2033
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2034
2034
|
exports.progressLogger = void 0;
|
|
@@ -2037,13 +2037,13 @@ var require_progressLogger = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
2037
2037
|
}));
|
|
2038
2038
|
|
|
2039
2039
|
//#endregion
|
|
2040
|
-
//#region ../../node_modules/.pnpm/@pnpm+core-loggers@1001.0.
|
|
2040
|
+
//#region ../../node_modules/.pnpm/@pnpm+core-loggers@1001.0.8_@pnpm+logger@1001.0.1/node_modules/@pnpm/core-loggers/lib/registryLogger.js
|
|
2041
2041
|
var require_registryLogger = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
2042
2042
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2043
2043
|
}));
|
|
2044
2044
|
|
|
2045
2045
|
//#endregion
|
|
2046
|
-
//#region ../../node_modules/.pnpm/@pnpm+core-loggers@1001.0.
|
|
2046
|
+
//#region ../../node_modules/.pnpm/@pnpm+core-loggers@1001.0.8_@pnpm+logger@1001.0.1/node_modules/@pnpm/core-loggers/lib/removalLogger.js
|
|
2047
2047
|
var require_removalLogger = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
2048
2048
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2049
2049
|
exports.removalLogger = void 0;
|
|
@@ -2052,7 +2052,7 @@ var require_removalLogger = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
2052
2052
|
}));
|
|
2053
2053
|
|
|
2054
2054
|
//#endregion
|
|
2055
|
-
//#region ../../node_modules/.pnpm/@pnpm+core-loggers@1001.0.
|
|
2055
|
+
//#region ../../node_modules/.pnpm/@pnpm+core-loggers@1001.0.8_@pnpm+logger@1001.0.1/node_modules/@pnpm/core-loggers/lib/requestRetryLogger.js
|
|
2056
2056
|
var require_requestRetryLogger = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
2057
2057
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2058
2058
|
exports.requestRetryLogger = void 0;
|
|
@@ -2061,7 +2061,7 @@ var require_requestRetryLogger = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
2061
2061
|
}));
|
|
2062
2062
|
|
|
2063
2063
|
//#endregion
|
|
2064
|
-
//#region ../../node_modules/.pnpm/@pnpm+core-loggers@1001.0.
|
|
2064
|
+
//#region ../../node_modules/.pnpm/@pnpm+core-loggers@1001.0.8_@pnpm+logger@1001.0.1/node_modules/@pnpm/core-loggers/lib/rootLogger.js
|
|
2065
2065
|
var require_rootLogger = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
2066
2066
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2067
2067
|
exports.rootLogger = void 0;
|
|
@@ -2070,7 +2070,7 @@ var require_rootLogger = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
2070
2070
|
}));
|
|
2071
2071
|
|
|
2072
2072
|
//#endregion
|
|
2073
|
-
//#region ../../node_modules/.pnpm/@pnpm+core-loggers@1001.0.
|
|
2073
|
+
//#region ../../node_modules/.pnpm/@pnpm+core-loggers@1001.0.8_@pnpm+logger@1001.0.1/node_modules/@pnpm/core-loggers/lib/scopeLogger.js
|
|
2074
2074
|
var require_scopeLogger = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
2075
2075
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2076
2076
|
exports.scopeLogger = void 0;
|
|
@@ -2079,7 +2079,7 @@ var require_scopeLogger = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
2079
2079
|
}));
|
|
2080
2080
|
|
|
2081
2081
|
//#endregion
|
|
2082
|
-
//#region ../../node_modules/.pnpm/@pnpm+core-loggers@1001.0.
|
|
2082
|
+
//#region ../../node_modules/.pnpm/@pnpm+core-loggers@1001.0.8_@pnpm+logger@1001.0.1/node_modules/@pnpm/core-loggers/lib/skippedOptionalDependencyLogger.js
|
|
2083
2083
|
var require_skippedOptionalDependencyLogger = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
2084
2084
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2085
2085
|
exports.skippedOptionalDependencyLogger = void 0;
|
|
@@ -2088,7 +2088,7 @@ var require_skippedOptionalDependencyLogger = /* @__PURE__ */ __commonJSMin(((ex
|
|
|
2088
2088
|
}));
|
|
2089
2089
|
|
|
2090
2090
|
//#endregion
|
|
2091
|
-
//#region ../../node_modules/.pnpm/@pnpm+core-loggers@1001.0.
|
|
2091
|
+
//#region ../../node_modules/.pnpm/@pnpm+core-loggers@1001.0.8_@pnpm+logger@1001.0.1/node_modules/@pnpm/core-loggers/lib/stageLogger.js
|
|
2092
2092
|
var require_stageLogger = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
2093
2093
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2094
2094
|
exports.stageLogger = void 0;
|
|
@@ -2097,7 +2097,7 @@ var require_stageLogger = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
2097
2097
|
}));
|
|
2098
2098
|
|
|
2099
2099
|
//#endregion
|
|
2100
|
-
//#region ../../node_modules/.pnpm/@pnpm+core-loggers@1001.0.
|
|
2100
|
+
//#region ../../node_modules/.pnpm/@pnpm+core-loggers@1001.0.8_@pnpm+logger@1001.0.1/node_modules/@pnpm/core-loggers/lib/statsLogger.js
|
|
2101
2101
|
var require_statsLogger = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
2102
2102
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2103
2103
|
exports.statsLogger = void 0;
|
|
@@ -2106,7 +2106,7 @@ var require_statsLogger = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
2106
2106
|
}));
|
|
2107
2107
|
|
|
2108
2108
|
//#endregion
|
|
2109
|
-
//#region ../../node_modules/.pnpm/@pnpm+core-loggers@1001.0.
|
|
2109
|
+
//#region ../../node_modules/.pnpm/@pnpm+core-loggers@1001.0.8_@pnpm+logger@1001.0.1/node_modules/@pnpm/core-loggers/lib/summaryLogger.js
|
|
2110
2110
|
var require_summaryLogger = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
2111
2111
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2112
2112
|
exports.summaryLogger = void 0;
|
|
@@ -2115,7 +2115,7 @@ var require_summaryLogger = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
2115
2115
|
}));
|
|
2116
2116
|
|
|
2117
2117
|
//#endregion
|
|
2118
|
-
//#region ../../node_modules/.pnpm/@pnpm+core-loggers@1001.0.
|
|
2118
|
+
//#region ../../node_modules/.pnpm/@pnpm+core-loggers@1001.0.8_@pnpm+logger@1001.0.1/node_modules/@pnpm/core-loggers/lib/updateCheckLogger.js
|
|
2119
2119
|
var require_updateCheckLogger = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
2120
2120
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2121
2121
|
exports.updateCheckLogger = void 0;
|
|
@@ -2124,7 +2124,7 @@ var require_updateCheckLogger = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
2124
2124
|
}));
|
|
2125
2125
|
|
|
2126
2126
|
//#endregion
|
|
2127
|
-
//#region ../../node_modules/.pnpm/@pnpm+core-loggers@1001.0.
|
|
2127
|
+
//#region ../../node_modules/.pnpm/@pnpm+core-loggers@1001.0.8_@pnpm+logger@1001.0.1/node_modules/@pnpm/core-loggers/lib/executionTimeLogger.js
|
|
2128
2128
|
var require_executionTimeLogger = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
2129
2129
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2130
2130
|
exports.executionTimeLogger = void 0;
|
|
@@ -2133,7 +2133,7 @@ var require_executionTimeLogger = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
2133
2133
|
}));
|
|
2134
2134
|
|
|
2135
2135
|
//#endregion
|
|
2136
|
-
//#region ../../node_modules/.pnpm/@pnpm+core-loggers@1001.0.
|
|
2136
|
+
//#region ../../node_modules/.pnpm/@pnpm+core-loggers@1001.0.8_@pnpm+logger@1001.0.1/node_modules/@pnpm/core-loggers/lib/all.js
|
|
2137
2137
|
var require_all = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
2138
2138
|
var __createBinding = exports && exports.__createBinding || (Object.create ? (function(o, m, k, k2) {
|
|
2139
2139
|
if (k2 === void 0) k2 = k;
|
|
@@ -2180,7 +2180,7 @@ var require_all = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
2180
2180
|
}));
|
|
2181
2181
|
|
|
2182
2182
|
//#endregion
|
|
2183
|
-
//#region ../../node_modules/.pnpm/@pnpm+core-loggers@1001.0.
|
|
2183
|
+
//#region ../../node_modules/.pnpm/@pnpm+core-loggers@1001.0.8_@pnpm+logger@1001.0.1/node_modules/@pnpm/core-loggers/lib/index.js
|
|
2184
2184
|
var require_lib$10 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
2185
2185
|
var __createBinding = exports && exports.__createBinding || (Object.create ? (function(o, m, k, k2) {
|
|
2186
2186
|
if (k2 === void 0) k2 = k;
|
|
@@ -2204,19 +2204,19 @@ var require_lib$10 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
2204
2204
|
}));
|
|
2205
2205
|
|
|
2206
2206
|
//#endregion
|
|
2207
|
-
//#region ../../node_modules/.pnpm/@pnpm+types@1001.
|
|
2207
|
+
//#region ../../node_modules/.pnpm/@pnpm+types@1001.2.0/node_modules/@pnpm/types/lib/config.js
|
|
2208
2208
|
var require_config = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
2209
2209
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2210
2210
|
}));
|
|
2211
2211
|
|
|
2212
2212
|
//#endregion
|
|
2213
|
-
//#region ../../node_modules/.pnpm/@pnpm+types@1001.
|
|
2213
|
+
//#region ../../node_modules/.pnpm/@pnpm+types@1001.2.0/node_modules/@pnpm/types/lib/env.js
|
|
2214
2214
|
var require_env = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
2215
2215
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2216
2216
|
}));
|
|
2217
2217
|
|
|
2218
2218
|
//#endregion
|
|
2219
|
-
//#region ../../node_modules/.pnpm/@pnpm+types@1001.
|
|
2219
|
+
//#region ../../node_modules/.pnpm/@pnpm+types@1001.2.0/node_modules/@pnpm/types/lib/misc.js
|
|
2220
2220
|
var require_misc = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
2221
2221
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2222
2222
|
exports.DEPENDENCIES_OR_PEER_FIELDS = exports.DEPENDENCIES_FIELDS = void 0;
|
|
@@ -2229,31 +2229,31 @@ var require_misc = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
2229
2229
|
}));
|
|
2230
2230
|
|
|
2231
2231
|
//#endregion
|
|
2232
|
-
//#region ../../node_modules/.pnpm/@pnpm+types@1001.
|
|
2232
|
+
//#region ../../node_modules/.pnpm/@pnpm+types@1001.2.0/node_modules/@pnpm/types/lib/options.js
|
|
2233
2233
|
var require_options = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
2234
2234
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2235
2235
|
}));
|
|
2236
2236
|
|
|
2237
2237
|
//#endregion
|
|
2238
|
-
//#region ../../node_modules/.pnpm/@pnpm+types@1001.
|
|
2238
|
+
//#region ../../node_modules/.pnpm/@pnpm+types@1001.2.0/node_modules/@pnpm/types/lib/package.js
|
|
2239
2239
|
var require_package = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
2240
2240
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2241
2241
|
}));
|
|
2242
2242
|
|
|
2243
2243
|
//#endregion
|
|
2244
|
-
//#region ../../node_modules/.pnpm/@pnpm+types@1001.
|
|
2244
|
+
//#region ../../node_modules/.pnpm/@pnpm+types@1001.2.0/node_modules/@pnpm/types/lib/peerDependencyIssues.js
|
|
2245
2245
|
var require_peerDependencyIssues = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
2246
2246
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2247
2247
|
}));
|
|
2248
2248
|
|
|
2249
2249
|
//#endregion
|
|
2250
|
-
//#region ../../node_modules/.pnpm/@pnpm+types@1001.
|
|
2250
|
+
//#region ../../node_modules/.pnpm/@pnpm+types@1001.2.0/node_modules/@pnpm/types/lib/project.js
|
|
2251
2251
|
var require_project = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
2252
2252
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2253
2253
|
}));
|
|
2254
2254
|
|
|
2255
2255
|
//#endregion
|
|
2256
|
-
//#region ../../node_modules/.pnpm/@pnpm+types@1001.
|
|
2256
|
+
//#region ../../node_modules/.pnpm/@pnpm+types@1001.2.0/node_modules/@pnpm/types/lib/index.js
|
|
2257
2257
|
var require_lib$9 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
2258
2258
|
var __createBinding = exports && exports.__createBinding || (Object.create ? (function(o, m, k, k2) {
|
|
2259
2259
|
if (k2 === void 0) k2 = k;
|
|
@@ -2283,7 +2283,7 @@ var require_lib$9 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
2283
2283
|
}));
|
|
2284
2284
|
|
|
2285
2285
|
//#endregion
|
|
2286
|
-
//#region ../../node_modules/.pnpm/@pnpm+manifest-utils@1002.0.
|
|
2286
|
+
//#region ../../node_modules/.pnpm/@pnpm+manifest-utils@1002.0.3_@pnpm+logger@1001.0.1/node_modules/@pnpm/manifest-utils/lib/updateProjectManifestObject.js
|
|
2287
2287
|
var require_updateProjectManifestObject = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
2288
2288
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2289
2289
|
exports.updateProjectManifestObject = updateProjectManifestObject;
|
|
@@ -2331,7 +2331,7 @@ var require_updateProjectManifestObject = /* @__PURE__ */ __commonJSMin(((export
|
|
|
2331
2331
|
}));
|
|
2332
2332
|
|
|
2333
2333
|
//#endregion
|
|
2334
|
-
//#region ../../node_modules/.pnpm/@pnpm+manifest-utils@1002.0.
|
|
2334
|
+
//#region ../../node_modules/.pnpm/@pnpm+manifest-utils@1002.0.3_@pnpm+logger@1001.0.1/node_modules/@pnpm/manifest-utils/lib/getDependencyTypeFromManifest.js
|
|
2335
2335
|
var require_getDependencyTypeFromManifest = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
2336
2336
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2337
2337
|
exports.getDependencyTypeFromManifest = getDependencyTypeFromManifest;
|
|
@@ -2345,7 +2345,7 @@ var require_getDependencyTypeFromManifest = /* @__PURE__ */ __commonJSMin(((expo
|
|
|
2345
2345
|
}));
|
|
2346
2346
|
|
|
2347
2347
|
//#endregion
|
|
2348
|
-
//#region ../../node_modules/.pnpm/@pnpm+manifest-utils@1002.0.
|
|
2348
|
+
//#region ../../node_modules/.pnpm/@pnpm+manifest-utils@1002.0.3_@pnpm+logger@1001.0.1/node_modules/@pnpm/manifest-utils/lib/index.js
|
|
2349
2349
|
var require_lib$8 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
2350
2350
|
var __createBinding = exports && exports.__createBinding || (Object.create ? (function(o, m, k, k2) {
|
|
2351
2351
|
if (k2 === void 0) k2 = k;
|
|
@@ -6400,7 +6400,7 @@ var require_write_yaml_file = /* @__PURE__ */ __commonJSMin(((exports, module) =
|
|
|
6400
6400
|
}));
|
|
6401
6401
|
|
|
6402
6402
|
//#endregion
|
|
6403
|
-
//#region ../../node_modules/.pnpm/@pnpm+write-project-manifest@1000.0.
|
|
6403
|
+
//#region ../../node_modules/.pnpm/@pnpm+write-project-manifest@1000.0.15/node_modules/@pnpm/write-project-manifest/lib/index.js
|
|
6404
6404
|
var require_lib$4 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
6405
6405
|
var __importDefault = exports && exports.__importDefault || function(mod) {
|
|
6406
6406
|
return mod && mod.__esModule ? mod : { "default": mod };
|
|
@@ -9093,7 +9093,7 @@ var require_parse_json = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
9093
9093
|
}));
|
|
9094
9094
|
|
|
9095
9095
|
//#endregion
|
|
9096
|
-
//#region ../../node_modules/.pnpm/@pnpm+read-project-manifest@1001.2.
|
|
9096
|
+
//#region ../../node_modules/.pnpm/@pnpm+read-project-manifest@1001.2.3_@pnpm+logger@1001.0.1/node_modules/@pnpm/read-project-manifest/lib/readFile.js
|
|
9097
9097
|
var require_readFile = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
9098
9098
|
var __importDefault = exports && exports.__importDefault || function(mod) {
|
|
9099
9099
|
return mod && mod.__esModule ? mod : { "default": mod };
|
|
@@ -9136,7 +9136,7 @@ var require_readFile = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
9136
9136
|
}));
|
|
9137
9137
|
|
|
9138
9138
|
//#endregion
|
|
9139
|
-
//#region ../../node_modules/.pnpm/@pnpm+read-project-manifest@1001.2.
|
|
9139
|
+
//#region ../../node_modules/.pnpm/@pnpm+read-project-manifest@1001.2.3_@pnpm+logger@1001.0.1/node_modules/@pnpm/read-project-manifest/lib/index.js
|
|
9140
9140
|
var require_lib = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
9141
9141
|
var __importDefault = exports && exports.__importDefault || function(mod) {
|
|
9142
9142
|
return mod && mod.__esModule ? mod : { "default": mod };
|
package/dist/nitro.json
CHANGED
package/dist/public/200.html
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
<!DOCTYPE html><html lang="en" class="bg-dots"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width,initial-scale=1"><script type="importmap">{"imports":{"#entry":"/.devtools-vite/_nuxt/
|
|
1
|
+
<!DOCTYPE html><html lang="en" class="bg-dots"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width,initial-scale=1"><script type="importmap">{"imports":{"#entry":"/.devtools-vite/_nuxt/wlAuDjxN.js"}}</script><title>Vite DevTools</title><link rel="stylesheet" href="/.devtools-vite/_nuxt/entry.BVWKKagY.css" crossorigin><link rel="modulepreload" as="script" crossorigin href="/.devtools-vite/_nuxt/wlAuDjxN.js"><meta name="description" content="DevTools for Vite"><meta property="og:title" content="Vite DevTools"><meta property="og:description" content="DevTools for Vite"><link rel="icon" type="image/svg+xml" href="/favicon.svg"><script type="module" src="/.devtools-vite/_nuxt/wlAuDjxN.js" crossorigin></script><script id="unhead:payload" type="application/json">{"title":"Vite DevTools"}</script></head><body><div id="__nuxt"></div><div id="teleports"></div><script type="application/json" data-nuxt-data="nuxt-app" data-ssr="false" id="__NUXT_DATA__">[{"prerenderedAt":1,"serverRendered":2},1766388340862,false]</script><script>window.__NUXT__={};window.__NUXT__.config={public:{},app:{baseURL:"/.devtools-vite/",buildId:"92f58f41-f5d8-4eb9-8df8-90c37ec07cf8",buildAssetsDir:"/_nuxt/",cdnURL:""}}</script></body></html>
|
package/dist/public/404.html
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
<!DOCTYPE html><html lang="en" class="bg-dots"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width,initial-scale=1"><script type="importmap">{"imports":{"#entry":"/.devtools-vite/_nuxt/
|
|
1
|
+
<!DOCTYPE html><html lang="en" class="bg-dots"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width,initial-scale=1"><script type="importmap">{"imports":{"#entry":"/.devtools-vite/_nuxt/wlAuDjxN.js"}}</script><title>Vite DevTools</title><link rel="stylesheet" href="/.devtools-vite/_nuxt/entry.BVWKKagY.css" crossorigin><link rel="modulepreload" as="script" crossorigin href="/.devtools-vite/_nuxt/wlAuDjxN.js"><meta name="description" content="DevTools for Vite"><meta property="og:title" content="Vite DevTools"><meta property="og:description" content="DevTools for Vite"><link rel="icon" type="image/svg+xml" href="/favicon.svg"><script type="module" src="/.devtools-vite/_nuxt/wlAuDjxN.js" crossorigin></script><script id="unhead:payload" type="application/json">{"title":"Vite DevTools"}</script></head><body><div id="__nuxt"></div><div id="teleports"></div><script type="application/json" data-nuxt-data="nuxt-app" data-ssr="false" id="__NUXT_DATA__">[{"prerenderedAt":1,"serverRendered":2},1766388340863,false]</script><script>window.__NUXT__={};window.__NUXT__.config={public:{},app:{baseURL:"/.devtools-vite/",buildId:"92f58f41-f5d8-4eb9-8df8-90c37ec07cf8",buildAssetsDir:"/_nuxt/",cdnURL:""}}</script></body></html>
|