nuxt-site-config 3.2.21 → 4.0.1
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/module.json +1 -1
- package/dist/module.mjs +14 -49
- package/dist/runtime/app/component/SiteLink.d.vue.ts +4 -2
- package/dist/runtime/app/component/SiteLink.vue +10 -6
- package/dist/runtime/app/component/SiteLink.vue.d.ts +4 -2
- package/dist/runtime/app/plugins/i18n-micro.js +5 -3
- package/dist/runtime/app/plugins/i18n-shared.d.ts +2 -0
- package/dist/runtime/app/plugins/i18n-shared.js +4 -0
- package/dist/runtime/app/plugins/i18n.js +35 -25
- package/dist/runtime/server/composables/index.d.ts +0 -1
- package/dist/runtime/server/composables/index.js +0 -1
- package/dist/runtime/server/middleware/init.js +6 -5
- package/package.json +8 -11
- package/dist/client/200.html +0 -1
- package/dist/client/404.html +0 -1
- package/dist/client/_nuxt/CJF-nxcU.js +0 -1
- package/dist/client/_nuxt/CVO1_9PV.js +0 -1
- package/dist/client/_nuxt/Cp-IABpG.js +0 -1
- package/dist/client/_nuxt/D0r3Knsf.js +0 -1
- package/dist/client/_nuxt/DEKhsQUE.js +0 -155
- package/dist/client/_nuxt/DMwZ1BOb.js +0 -1
- package/dist/client/_nuxt/builds/latest.json +0 -1
- package/dist/client/_nuxt/builds/meta/96dbeb05-fdf1-4e7b-9baf-3588b30bbe1f.json +0 -1
- package/dist/client/_nuxt/entry.5pPLcN5N.css +0 -1
- package/dist/client/_nuxt/error-404.2oU8Iodr.css +0 -1
- package/dist/client/_nuxt/error-500.-OeSeSzN.css +0 -1
- package/dist/client/index.html +0 -1
- package/dist/runtime/server/composable-barrel-deprecated.d.ts +0 -7
- package/dist/runtime/server/composable-barrel-deprecated.js +0 -7
- package/dist/runtime/server/composables/useSiteConfig.d.ts +0 -7
- package/dist/runtime/server/composables/useSiteConfig.js +0 -4
package/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -1,51 +1,12 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { defineNuxtModule, createResolver, useLogger, addTypeTemplate, addImportsDir, addServerImportsDir, addPlugin, hasNuxtModule, hasNuxtModuleCompatibility, addTemplate, addServerHandler, addPrerenderRoutes, addServerPlugin } from '@nuxt/kit';
|
|
2
2
|
import { initSiteConfig, updateSiteConfig, getSiteConfigStack } from 'nuxt-site-config-kit';
|
|
3
|
+
import { setupDevToolsUI } from 'nuxtseo-shared/devtools';
|
|
3
4
|
import { relative } from 'pathe';
|
|
4
5
|
import { readPackageJSON } from 'pkg-types';
|
|
5
|
-
import { validateSiteConfigStack } from 'site-config-stack';
|
|
6
|
+
import { SiteConfigPriority, validateSiteConfigStack } from 'site-config-stack';
|
|
6
7
|
import { parseURL } from 'ufo';
|
|
7
|
-
import { existsSync } from 'node:fs';
|
|
8
|
-
import { addCustomTab } from '@nuxt/devtools-kit';
|
|
9
|
-
|
|
10
|
-
const DEVTOOLS_UI_ROUTE = "/__nuxt-site-config";
|
|
11
|
-
const DEVTOOLS_UI_LOCAL_PORT = 3030;
|
|
12
|
-
function setupDevToolsUI(resolve, nuxt = useNuxt()) {
|
|
13
|
-
const clientPath = resolve("./client");
|
|
14
|
-
const isProductionBuild = existsSync(clientPath);
|
|
15
|
-
if (isProductionBuild) {
|
|
16
|
-
nuxt.hook("vite:serverCreated", async (server) => {
|
|
17
|
-
const sirv = await import('sirv').then((r) => r.default || r);
|
|
18
|
-
server.middlewares.use(
|
|
19
|
-
DEVTOOLS_UI_ROUTE,
|
|
20
|
-
sirv(clientPath, { dev: true, single: true })
|
|
21
|
-
);
|
|
22
|
-
});
|
|
23
|
-
} else {
|
|
24
|
-
nuxt.hook("vite:extendConfig", (config) => {
|
|
25
|
-
config.server = { ...config.server, proxy: { ...config.server?.proxy } };
|
|
26
|
-
config.server.proxy[DEVTOOLS_UI_ROUTE] = {
|
|
27
|
-
target: `http://localhost:${DEVTOOLS_UI_LOCAL_PORT}${DEVTOOLS_UI_ROUTE}`,
|
|
28
|
-
changeOrigin: true,
|
|
29
|
-
followRedirects: true,
|
|
30
|
-
rewrite: (path) => path.replace(DEVTOOLS_UI_ROUTE, "")
|
|
31
|
-
};
|
|
32
|
-
});
|
|
33
|
-
}
|
|
34
|
-
addCustomTab({
|
|
35
|
-
// unique identifier
|
|
36
|
-
name: "nuxt-site-config",
|
|
37
|
-
// title to display in the tab
|
|
38
|
-
title: "Site Config",
|
|
39
|
-
// any icon from Iconify, or a URL to an image
|
|
40
|
-
icon: "carbon:settings-check",
|
|
41
|
-
// iframe view
|
|
42
|
-
view: {
|
|
43
|
-
type: "iframe",
|
|
44
|
-
src: DEVTOOLS_UI_ROUTE
|
|
45
|
-
}
|
|
46
|
-
});
|
|
47
|
-
}
|
|
48
8
|
|
|
9
|
+
const PORT_SUFFIX_RE = /:\d+$/;
|
|
49
10
|
const module$1 = defineNuxtModule({
|
|
50
11
|
meta: {
|
|
51
12
|
name: "nuxt-site-config",
|
|
@@ -85,7 +46,7 @@ const module$1 = defineNuxtModule({
|
|
|
85
46
|
delete siteConfigInput.enabled;
|
|
86
47
|
updateSiteConfig({
|
|
87
48
|
// we should allow environment variables to override the site config
|
|
88
|
-
_priority:
|
|
49
|
+
_priority: SiteConfigPriority.config,
|
|
89
50
|
_context: "nuxt-site-config:config",
|
|
90
51
|
...siteConfigInput
|
|
91
52
|
});
|
|
@@ -103,7 +64,7 @@ const module$1 = defineNuxtModule({
|
|
|
103
64
|
version,
|
|
104
65
|
debug: config.debug,
|
|
105
66
|
multiTenancy: (config.multiTenancy || [])?.map((t) => {
|
|
106
|
-
t.hosts = (t.hosts || []).map((h) => parseURL(h, "https://").host?.replace(
|
|
67
|
+
t.hosts = (t.hosts || []).map((h) => parseURL(h, "https://").host?.replace(PORT_SUFFIX_RE, "")).filter(Boolean);
|
|
107
68
|
if (!t.hosts.length) {
|
|
108
69
|
return false;
|
|
109
70
|
}
|
|
@@ -174,8 +135,6 @@ export {}
|
|
|
174
135
|
}
|
|
175
136
|
addServerImportsDir(resolve("./runtime/server/composables"));
|
|
176
137
|
nuxt.options.alias["#site-config"] = resolve("./runtime");
|
|
177
|
-
nuxt.options.nitro.alias = nuxt.options.nitro.alias || {};
|
|
178
|
-
nuxt.options.nitro.alias["#internal/nuxt-site-config"] = resolve("./runtime/server/composable-barrel-deprecated");
|
|
179
138
|
nuxt.options.build.transpile.push("site-config-stack");
|
|
180
139
|
addPlugin({
|
|
181
140
|
src: resolve("./runtime/app/plugins/0.siteConfig")
|
|
@@ -226,8 +185,14 @@ export {}
|
|
|
226
185
|
if (nuxt.options._generate)
|
|
227
186
|
addPrerenderRoutes("/__site-config__/debug.json");
|
|
228
187
|
}
|
|
229
|
-
if (nuxt.options.dev)
|
|
230
|
-
setupDevToolsUI(
|
|
188
|
+
if (nuxt.options.dev) {
|
|
189
|
+
setupDevToolsUI({
|
|
190
|
+
route: "/__nuxt-site-config",
|
|
191
|
+
name: "nuxt-site-config",
|
|
192
|
+
title: "Site Config",
|
|
193
|
+
icon: "carbon:settings-check"
|
|
194
|
+
}, resolve);
|
|
195
|
+
}
|
|
231
196
|
addServerPlugin(resolve("./runtime/server/plugins/injectState"));
|
|
232
197
|
}
|
|
233
198
|
});
|
|
@@ -1,5 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
canonical?: boolean;
|
|
3
|
+
absolute?: boolean;
|
|
4
|
+
withBase?: boolean;
|
|
3
5
|
/**
|
|
4
6
|
* Route Location the link should navigate to when clicked on.
|
|
5
7
|
*/
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<script setup>
|
|
2
|
-
import { computed, resolveComponent,
|
|
2
|
+
import { computed, resolveComponent, toRef } from "vue";
|
|
3
3
|
import { createSitePathResolver } from "../composables/utils";
|
|
4
|
-
const props = defineProps({
|
|
4
|
+
const { canonical, absolute, withBase, ...props } = defineProps({
|
|
5
5
|
canonical: { type: Boolean, required: false },
|
|
6
6
|
absolute: { type: Boolean, required: false },
|
|
7
7
|
withBase: { type: Boolean, required: false },
|
|
@@ -15,10 +15,14 @@ const props = defineProps({
|
|
|
15
15
|
prefetch: { type: Boolean, required: false },
|
|
16
16
|
noPrefetch: { type: Boolean, required: false }
|
|
17
17
|
});
|
|
18
|
-
const
|
|
19
|
-
|
|
18
|
+
const resolverOptions = {
|
|
19
|
+
canonical: toRef(() => canonical),
|
|
20
|
+
absolute: toRef(() => absolute),
|
|
21
|
+
withBase: toRef(() => withBase)
|
|
22
|
+
};
|
|
23
|
+
const linkResolver = createSitePathResolver(resolverOptions);
|
|
20
24
|
const NuxtLink = resolveComponent("NuxtLink");
|
|
21
|
-
const
|
|
25
|
+
const resolvedTo = computed(() => {
|
|
22
26
|
const _to = props.to;
|
|
23
27
|
if (!_to)
|
|
24
28
|
return void 0;
|
|
@@ -27,7 +31,7 @@ const to = computed(() => {
|
|
|
27
31
|
</script>
|
|
28
32
|
|
|
29
33
|
<template>
|
|
30
|
-
<NuxtLink v-bind="
|
|
34
|
+
<NuxtLink v-bind="props" :to="resolvedTo" :aria-label="props.to || props.href">
|
|
31
35
|
<slot />
|
|
32
36
|
</NuxtLink>
|
|
33
37
|
</template>
|
|
@@ -1,5 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
canonical?: boolean;
|
|
3
|
+
absolute?: boolean;
|
|
4
|
+
withBase?: boolean;
|
|
3
5
|
/**
|
|
4
6
|
* Route Location the link should navigate to when clicked on.
|
|
5
7
|
*/
|
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
import { defineNuxtPlugin,
|
|
1
|
+
import { defineNuxtPlugin, useRuntimeConfig } from "#app";
|
|
2
|
+
import { SiteConfigPriority } from "site-config-stack";
|
|
3
|
+
import { getSiteConfigStack } from "./i18n-shared.js";
|
|
2
4
|
export default defineNuxtPlugin({
|
|
3
5
|
name: "nuxt-site-config:i18n",
|
|
4
6
|
// @ts-expect-error untyped
|
|
@@ -10,9 +12,9 @@ export default defineNuxtPlugin({
|
|
|
10
12
|
const locales = $getLocales();
|
|
11
13
|
const defaultLocale = runtimeConfig.public.i18nConfig?.defaultLocale;
|
|
12
14
|
const localeDefinition = locales.find((l) => l.code === locale) || locales.find((l) => l.code === defaultLocale);
|
|
13
|
-
const stack =
|
|
15
|
+
const stack = getSiteConfigStack();
|
|
14
16
|
stack.push({
|
|
15
|
-
_priority: import.meta.server ?
|
|
17
|
+
_priority: import.meta.server ? SiteConfigPriority.i18n : SiteConfigPriority.build,
|
|
16
18
|
_context: "nuxt-i18n-micro",
|
|
17
19
|
currentLocale: localeDefinition.language || localeDefinition.iso || locale,
|
|
18
20
|
// @ts-expect-error untyped
|
|
@@ -1,7 +1,28 @@
|
|
|
1
|
-
import { defineNuxtPlugin
|
|
1
|
+
import { defineNuxtPlugin } from "#app";
|
|
2
2
|
import { i18nPluginDeps } from "#build/nuxt-site-config/i18n-plugin-deps.mjs";
|
|
3
|
+
import { SiteConfigPriority } from "site-config-stack";
|
|
3
4
|
import { parseURL } from "ufo";
|
|
4
5
|
import { computed, toValue, watch } from "vue";
|
|
6
|
+
import { getSiteConfigStack } from "./i18n-shared.js";
|
|
7
|
+
function resolveDefaultLocale(i18n) {
|
|
8
|
+
const locale = toValue(i18n.locales).find((l) => l.code === i18n.defaultLocale);
|
|
9
|
+
return locale?.language || locale?.iso || i18n.defaultLocale;
|
|
10
|
+
}
|
|
11
|
+
function resolveI18nUrl(i18n) {
|
|
12
|
+
return toValue(i18n.baseUrl) || void 0;
|
|
13
|
+
}
|
|
14
|
+
function resolveCurrentLocale(i18n) {
|
|
15
|
+
const properties = toValue(i18n.localeProperties);
|
|
16
|
+
if (properties.language)
|
|
17
|
+
return properties.language;
|
|
18
|
+
return resolveDefaultLocale(i18n);
|
|
19
|
+
}
|
|
20
|
+
function resolveDescription(i18n) {
|
|
21
|
+
return i18n.te("nuxtSiteConfig.description") ? i18n.t("nuxtSiteConfig.description") : void 0;
|
|
22
|
+
}
|
|
23
|
+
function resolveName(i18n) {
|
|
24
|
+
return i18n.te("nuxtSiteConfig.name") ? i18n.t("nuxtSiteConfig.name") : void 0;
|
|
25
|
+
}
|
|
5
26
|
export default defineNuxtPlugin({
|
|
6
27
|
name: "nuxt-site-config:i18n",
|
|
7
28
|
dependsOn: i18nPluginDeps,
|
|
@@ -9,7 +30,7 @@ export default defineNuxtPlugin({
|
|
|
9
30
|
const i18n = nuxtApp.$i18n;
|
|
10
31
|
if (!i18n)
|
|
11
32
|
return;
|
|
12
|
-
const stack =
|
|
33
|
+
const stack = getSiteConfigStack();
|
|
13
34
|
const i18nBaseUrl = toValue(i18n.baseUrl);
|
|
14
35
|
if (i18nBaseUrl) {
|
|
15
36
|
const siteConfig = stack.get({ resolveRefs: true });
|
|
@@ -24,40 +45,29 @@ export default defineNuxtPlugin({
|
|
|
24
45
|
}
|
|
25
46
|
}
|
|
26
47
|
}
|
|
27
|
-
const defaultLocale = computed(() => {
|
|
28
|
-
const locale = toValue(i18n.locales).find((l) => l.code === i18n.defaultLocale);
|
|
29
|
-
return locale?.language || locale?.iso || i18n.defaultLocale;
|
|
30
|
-
});
|
|
31
|
-
const i18nUrl = computed(() => {
|
|
32
|
-
const url = toValue(i18n.baseUrl);
|
|
33
|
-
return url || void 0;
|
|
34
|
-
});
|
|
35
|
-
const currentLocale = computed(() => {
|
|
36
|
-
const properties = toValue(i18n.localeProperties);
|
|
37
|
-
if (properties.language)
|
|
38
|
-
return properties.language;
|
|
39
|
-
return defaultLocale.value;
|
|
40
|
-
});
|
|
41
|
-
const description = computed(() => i18n.te("nuxtSiteConfig.description") ? i18n.t("nuxtSiteConfig.description") : void 0);
|
|
42
|
-
const name = computed(() => i18n.te("nuxtSiteConfig.name") ? i18n.t("nuxtSiteConfig.name") : void 0);
|
|
43
48
|
if (import.meta.server) {
|
|
44
49
|
stack.push({
|
|
45
|
-
_priority:
|
|
50
|
+
_priority: SiteConfigPriority.i18n,
|
|
46
51
|
_context: "@nuxtjs/i18n",
|
|
47
|
-
url:
|
|
48
|
-
defaultLocale,
|
|
49
|
-
currentLocale,
|
|
50
|
-
description,
|
|
51
|
-
name
|
|
52
|
+
url: () => resolveI18nUrl(i18n),
|
|
53
|
+
defaultLocale: () => resolveDefaultLocale(i18n),
|
|
54
|
+
currentLocale: () => resolveCurrentLocale(i18n),
|
|
55
|
+
description: () => resolveDescription(i18n),
|
|
56
|
+
name: () => resolveName(i18n)
|
|
52
57
|
});
|
|
53
58
|
return;
|
|
54
59
|
}
|
|
60
|
+
const defaultLocale = computed(() => resolveDefaultLocale(i18n));
|
|
61
|
+
const i18nUrl = computed(() => resolveI18nUrl(i18n));
|
|
62
|
+
const currentLocale = computed(() => resolveCurrentLocale(i18n));
|
|
63
|
+
const description = computed(() => resolveDescription(i18n));
|
|
64
|
+
const name = computed(() => resolveName(i18n));
|
|
55
65
|
let siteConfigEntry;
|
|
56
66
|
watch(i18n.locale, () => {
|
|
57
67
|
if (siteConfigEntry)
|
|
58
68
|
siteConfigEntry();
|
|
59
69
|
siteConfigEntry = stack.push({
|
|
60
|
-
_priority:
|
|
70
|
+
_priority: SiteConfigPriority.build,
|
|
61
71
|
_context: "@nuxtjs/i18n",
|
|
62
72
|
url: i18nUrl,
|
|
63
73
|
defaultLocale,
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import { eventHandler } from "h3";
|
|
2
2
|
import { useNitroApp, useRuntimeConfig } from "nitropack/runtime";
|
|
3
|
-
import { createSiteConfigStack, envSiteConfig } from "site-config-stack";
|
|
3
|
+
import { createSiteConfigStack, envSiteConfig, SiteConfigPriority } from "site-config-stack";
|
|
4
4
|
import { parseURL } from "ufo";
|
|
5
5
|
import { getNitroOrigin } from "../composables/getNitroOrigin.js";
|
|
6
|
+
const PORT_SUFFIX_RE = /:\d+$/;
|
|
6
7
|
export default eventHandler(async (e) => {
|
|
7
8
|
if (e.context._initedSiteConfig)
|
|
8
9
|
return;
|
|
@@ -17,13 +18,13 @@ export default eventHandler(async (e) => {
|
|
|
17
18
|
if (!import.meta.prerender) {
|
|
18
19
|
siteConfig.push({
|
|
19
20
|
_context: "nitro:init",
|
|
20
|
-
_priority:
|
|
21
|
+
_priority: SiteConfigPriority.nitro,
|
|
21
22
|
url: nitroOrigin
|
|
22
23
|
});
|
|
23
24
|
}
|
|
24
25
|
siteConfig.push({
|
|
25
26
|
_context: "runtimeEnv",
|
|
26
|
-
_priority:
|
|
27
|
+
_priority: SiteConfigPriority.runtime,
|
|
27
28
|
...runtimeConfig.site || {},
|
|
28
29
|
...runtimeConfig.public.site || {},
|
|
29
30
|
...envSiteConfig(import.meta.env || {})
|
|
@@ -38,12 +39,12 @@ export default eventHandler(async (e) => {
|
|
|
38
39
|
});
|
|
39
40
|
}
|
|
40
41
|
if (config.multiTenancy) {
|
|
41
|
-
const host = parseURL(nitroOrigin).host?.replace(
|
|
42
|
+
const host = parseURL(nitroOrigin).host?.replace(PORT_SUFFIX_RE, "") || "";
|
|
42
43
|
const tenant = config.multiTenancy?.find((t) => t.hosts.includes(host));
|
|
43
44
|
if (tenant) {
|
|
44
45
|
siteConfig.push({
|
|
45
46
|
_context: `multi-tenancy:${host}`,
|
|
46
|
-
_priority:
|
|
47
|
+
_priority: SiteConfigPriority.runtime,
|
|
47
48
|
...tenant.config
|
|
48
49
|
});
|
|
49
50
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nuxt-site-config",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "4.0.1",
|
|
5
5
|
"description": "Shared site configuration for Nuxt 3 modules.",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "Harlan Wilton",
|
|
@@ -49,18 +49,17 @@
|
|
|
49
49
|
"dist"
|
|
50
50
|
],
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"@nuxt/
|
|
53
|
-
"
|
|
54
|
-
"
|
|
52
|
+
"@nuxt/kit": "^4.4.2",
|
|
53
|
+
"h3": "^1.15.10",
|
|
54
|
+
"nuxtseo-shared": "^0.7.0",
|
|
55
55
|
"pathe": "^2.0.3",
|
|
56
56
|
"pkg-types": "^2.3.0",
|
|
57
|
-
"sirv": "^3.0.2",
|
|
58
57
|
"ufo": "^1.6.3",
|
|
59
|
-
"nuxt-site-config-kit": "
|
|
60
|
-
"site-config-stack": "
|
|
58
|
+
"nuxt-site-config-kit": "4.0.1",
|
|
59
|
+
"site-config-stack": "4.0.1"
|
|
61
60
|
},
|
|
62
61
|
"devDependencies": {
|
|
63
|
-
"@nuxt/schema": "^4.
|
|
62
|
+
"@nuxt/schema": "^4.4.2"
|
|
64
63
|
},
|
|
65
64
|
"build": {
|
|
66
65
|
"externals": [
|
|
@@ -68,9 +67,7 @@
|
|
|
68
67
|
]
|
|
69
68
|
},
|
|
70
69
|
"scripts": {
|
|
71
|
-
"
|
|
72
|
-
"client:dev": "nuxi dev ../../client --port 3030",
|
|
73
|
-
"build": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxt-module-build build && pnpm run client:build",
|
|
70
|
+
"build": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxt-module-build build",
|
|
74
71
|
"dev:build": "nuxi build playground",
|
|
75
72
|
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare",
|
|
76
73
|
"release": "bumpp package.json --commit --push --tag",
|
package/dist/client/200.html
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html><html><head><meta charset="utf-8"><meta name="viewport" content="width=device-width, initial-scale=1"><link rel="stylesheet" href="/__nuxt-site-config/_nuxt/entry.5pPLcN5N.css" crossorigin><link rel="modulepreload" as="script" crossorigin href="/__nuxt-site-config/_nuxt/DEKhsQUE.js"><script type="module" src="/__nuxt-site-config/_nuxt/DEKhsQUE.js" crossorigin></script></head><body><div id="__nuxt"></div><div id="teleports"></div><script>window.__NUXT_SITE_CONFIG__={_priority:{name:-10,env:-15},env:"production",name:"nuxt-site-config-client"}</script><script>window.__NUXT__={};window.__NUXT__.config={public:{},app:{baseURL:"/__nuxt-site-config",buildId:"96dbeb05-fdf1-4e7b-9baf-3588b30bbe1f",buildAssetsDir:"/_nuxt/",cdnURL:""}}</script><script type="application/json" data-nuxt-data="nuxt-app" data-ssr="false" id="__NUXT_DATA__">[{"prerenderedAt":1,"serverRendered":2},1771903960568,false]</script></body></html>
|
package/dist/client/404.html
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html><html><head><meta charset="utf-8"><meta name="viewport" content="width=device-width, initial-scale=1"><link rel="stylesheet" href="/__nuxt-site-config/_nuxt/entry.5pPLcN5N.css" crossorigin><link rel="modulepreload" as="script" crossorigin href="/__nuxt-site-config/_nuxt/DEKhsQUE.js"><script type="module" src="/__nuxt-site-config/_nuxt/DEKhsQUE.js" crossorigin></script></head><body><div id="__nuxt"></div><div id="teleports"></div><script>window.__NUXT_SITE_CONFIG__={_priority:{name:-10,env:-15},env:"production",name:"nuxt-site-config-client"}</script><script>window.__NUXT__={};window.__NUXT__.config={public:{},app:{baseURL:"/__nuxt-site-config",buildId:"96dbeb05-fdf1-4e7b-9baf-3588b30bbe1f",buildAssetsDir:"/_nuxt/",cdnURL:""}}</script><script type="application/json" data-nuxt-data="nuxt-app" data-ssr="false" id="__NUXT_DATA__">[{"prerenderedAt":1,"serverRendered":2},1771903960568,false]</script></body></html>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{_ as s,u as a,o as i,c as u,a as t,t as n,b as c,w as l,d,e as f}from"./DEKhsQUE.js";const p={class:"antialiased bg-white dark:bg-[#020420] dark:text-white font-sans grid min-h-screen overflow-hidden place-content-center text-[#020420] tracking-wide"},m={class:"max-w-520px text-center"},h=["textContent"],b=["textContent"],x=["textContent"],g={class:"flex items-center justify-center w-full"},y={__name:"error-404",props:{appName:{type:String,default:"Nuxt"},status:{type:Number,default:404},statusText:{type:String,default:"Page not found"},description:{type:String,default:"Sorry, the page you are looking for could not be found."},backHome:{type:String,default:"Go back home"}},setup(e){const r=e;return a({title:`${r.status} - ${r.statusText} | ${r.appName}`,script:[{innerHTML:`!function(){const e=document.createElement("link").relList;if(!(e&&e.supports&&e.supports("modulepreload"))){for(const e of document.querySelectorAll('link[rel="modulepreload"]'))r(e);new MutationObserver(e=>{for(const o of e)if("childList"===o.type)for(const e of o.addedNodes)"LINK"===e.tagName&&"modulepreload"===e.rel&&r(e)}).observe(document,{childList:!0,subtree:!0})}function r(e){if(e.ep)return;e.ep=!0;const r=function(e){const r={};return e.integrity&&(r.integrity=e.integrity),e.referrerPolicy&&(r.referrerPolicy=e.referrerPolicy),"use-credentials"===e.crossOrigin?r.credentials="include":"anonymous"===e.crossOrigin?r.credentials="omit":r.credentials="same-origin",r}(e);fetch(e.href,r)}}();`}],style:[{innerHTML:'*,: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}h1,h2{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}h1,h2,p{margin:0}*,: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: }'}]}),(k,w)=>{const o=f;return i(),u("div",p,[t("div",m,[t("h1",{class:"font-semibold leading-none mb-4 sm:text-[110px] tabular-nums text-[80px]",textContent:n(e.status)},null,8,h),t("h2",{class:"font-semibold mb-2 sm:text-3xl text-2xl",textContent:n(e.statusText)},null,8,b),t("p",{class:"mb-4 px-2 text-[#64748B] text-md",textContent:n(e.description)},null,8,x),t("div",g,[c(o,{to:"/",class:"font-medium hover:text-[#00DC82] text-sm underline underline-offset-3"},{default:l(()=>[d(n(e.backHome),1)]),_:1})])])])}}},v=s(y,[["__scopeId","data-v-76f0cbc4"]]);export{v as default};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
const e=Object.freeze(JSON.parse('{"colors":{"activityBar.activeBorder":"#1c6b48","activityBar.background":"#ffffff","activityBar.border":"#f0f0f0","activityBar.foreground":"#393a34","activityBar.inactiveForeground":"#393a3450","activityBarBadge.background":"#4e4f47","activityBarBadge.foreground":"#ffffff","badge.background":"#393a3490","badge.foreground":"#ffffff","breadcrumb.activeSelectionForeground":"#22222218","breadcrumb.background":"#f7f7f7","breadcrumb.focusForeground":"#393a34","breadcrumb.foreground":"#6a737d","breadcrumbPicker.background":"#ffffff","button.background":"#1c6b48","button.foreground":"#ffffff","button.hoverBackground":"#1c6b48","checkbox.background":"#f7f7f7","checkbox.border":"#d1d5da","debugToolBar.background":"#ffffff","descriptionForeground":"#393a3490","diffEditor.insertedTextBackground":"#1c6b4830","diffEditor.removedTextBackground":"#ab595940","dropdown.background":"#ffffff","dropdown.border":"#f0f0f0","dropdown.foreground":"#393a34","dropdown.listBackground":"#f7f7f7","editor.background":"#ffffff","editor.findMatchBackground":"#e6cc7744","editor.findMatchHighlightBackground":"#e6cc7766","editor.focusedStackFrameHighlightBackground":"#fff5b1","editor.foldBackground":"#22222210","editor.foreground":"#393a34","editor.inactiveSelectionBackground":"#22222210","editor.lineHighlightBackground":"#f7f7f7","editor.selectionBackground":"#22222218","editor.selectionHighlightBackground":"#22222210","editor.stackFrameHighlightBackground":"#fffbdd","editor.wordHighlightBackground":"#1c6b4805","editor.wordHighlightStrongBackground":"#1c6b4810","editorBracketHighlight.foreground1":"#2993a3","editorBracketHighlight.foreground2":"#1e754f","editorBracketHighlight.foreground3":"#a65e2b","editorBracketHighlight.foreground4":"#a13865","editorBracketHighlight.foreground5":"#bda437","editorBracketHighlight.foreground6":"#296aa3","editorBracketMatch.background":"#1c6b4820","editorError.foreground":"#ab5959","editorGroup.border":"#f0f0f0","editorGroupHeader.tabsBackground":"#ffffff","editorGroupHeader.tabsBorder":"#f0f0f0","editorGutter.addedBackground":"#1e754f","editorGutter.commentRangeForeground":"#393a3450","editorGutter.deletedBackground":"#ab5959","editorGutter.foldingControlForeground":"#393a3490","editorGutter.modifiedBackground":"#296aa3","editorHint.foreground":"#1e754f","editorIndentGuide.activeBackground":"#00000030","editorIndentGuide.background":"#00000015","editorInfo.foreground":"#296aa3","editorInlayHint.background":"#f7f7f7","editorInlayHint.foreground":"#999999","editorLineNumber.activeForeground":"#4e4f47","editorLineNumber.foreground":"#393a3450","editorOverviewRuler.border":"#fff","editorStickyScroll.background":"#f7f7f7","editorStickyScrollHover.background":"#f7f7f7","editorWarning.foreground":"#a65e2b","editorWhitespace.foreground":"#00000015","editorWidget.background":"#ffffff","errorForeground":"#ab5959","focusBorder":"#00000000","foreground":"#393a34","gitDecoration.addedResourceForeground":"#1e754f","gitDecoration.conflictingResourceForeground":"#a65e2b","gitDecoration.deletedResourceForeground":"#ab5959","gitDecoration.ignoredResourceForeground":"#393a3450","gitDecoration.modifiedResourceForeground":"#296aa3","gitDecoration.submoduleResourceForeground":"#393a3490","gitDecoration.untrackedResourceForeground":"#2993a3","input.background":"#f7f7f7","input.border":"#f0f0f0","input.foreground":"#393a34","input.placeholderForeground":"#393a3490","inputOption.activeBackground":"#393a3450","list.activeSelectionBackground":"#f7f7f7","list.activeSelectionForeground":"#393a34","list.focusBackground":"#f7f7f7","list.highlightForeground":"#1c6b48","list.hoverBackground":"#f7f7f7","list.hoverForeground":"#393a34","list.inactiveFocusBackground":"#ffffff","list.inactiveSelectionBackground":"#f7f7f7","list.inactiveSelectionForeground":"#393a34","menu.separatorBackground":"#f0f0f0","notificationCenterHeader.background":"#ffffff","notificationCenterHeader.foreground":"#6a737d","notifications.background":"#ffffff","notifications.border":"#f0f0f0","notifications.foreground":"#393a34","notificationsErrorIcon.foreground":"#ab5959","notificationsInfoIcon.foreground":"#296aa3","notificationsWarningIcon.foreground":"#a65e2b","panel.background":"#ffffff","panel.border":"#f0f0f0","panelInput.border":"#e1e4e8","panelTitle.activeBorder":"#1c6b48","panelTitle.activeForeground":"#393a34","panelTitle.inactiveForeground":"#6a737d","peekViewEditor.background":"#ffffff","peekViewResult.background":"#ffffff","pickerGroup.border":"#f0f0f0","pickerGroup.foreground":"#393a34","problemsErrorIcon.foreground":"#ab5959","problemsInfoIcon.foreground":"#296aa3","problemsWarningIcon.foreground":"#a65e2b","progressBar.background":"#1c6b48","quickInput.background":"#ffffff","quickInput.foreground":"#393a34","quickInputList.focusBackground":"#f7f7f7","scrollbar.shadow":"#6a737d33","scrollbarSlider.activeBackground":"#393a3450","scrollbarSlider.background":"#393a3410","scrollbarSlider.hoverBackground":"#393a3450","settings.headerForeground":"#393a34","settings.modifiedItemIndicator":"#1c6b48","sideBar.background":"#ffffff","sideBar.border":"#f0f0f0","sideBar.foreground":"#4e4f47","sideBarSectionHeader.background":"#ffffff","sideBarSectionHeader.border":"#f0f0f0","sideBarSectionHeader.foreground":"#393a34","sideBarTitle.foreground":"#393a34","statusBar.background":"#ffffff","statusBar.border":"#f0f0f0","statusBar.debuggingBackground":"#f7f7f7","statusBar.debuggingForeground":"#4e4f47","statusBar.foreground":"#4e4f47","statusBar.noFolderBackground":"#ffffff","statusBarItem.prominentBackground":"#f7f7f7","tab.activeBackground":"#ffffff","tab.activeBorder":"#f0f0f0","tab.activeBorderTop":"#393a3490","tab.activeForeground":"#393a34","tab.border":"#f0f0f0","tab.hoverBackground":"#f7f7f7","tab.inactiveBackground":"#ffffff","tab.inactiveForeground":"#6a737d","tab.unfocusedActiveBorder":"#f0f0f0","tab.unfocusedActiveBorderTop":"#f0f0f0","tab.unfocusedHoverBackground":"#ffffff","terminal.ansiBlack":"#121212","terminal.ansiBlue":"#296aa3","terminal.ansiBrightBlack":"#aaaaaa","terminal.ansiBrightBlue":"#296aa3","terminal.ansiBrightCyan":"#2993a3","terminal.ansiBrightGreen":"#1e754f","terminal.ansiBrightMagenta":"#a13865","terminal.ansiBrightRed":"#ab5959","terminal.ansiBrightWhite":"#dddddd","terminal.ansiBrightYellow":"#bda437","terminal.ansiCyan":"#2993a3","terminal.ansiGreen":"#1e754f","terminal.ansiMagenta":"#a13865","terminal.ansiRed":"#ab5959","terminal.ansiWhite":"#dbd7ca","terminal.ansiYellow":"#bda437","terminal.foreground":"#393a34","terminal.selectionBackground":"#22222218","textBlockQuote.background":"#ffffff","textBlockQuote.border":"#f0f0f0","textCodeBlock.background":"#ffffff","textLink.activeForeground":"#1c6b48","textLink.foreground":"#1c6b48","textPreformat.foreground":"#586069","textSeparator.foreground":"#d1d5da","titleBar.activeBackground":"#ffffff","titleBar.activeForeground":"#4e4f47","titleBar.border":"#f7f7f7","titleBar.inactiveBackground":"#ffffff","titleBar.inactiveForeground":"#6a737d","tree.indentGuidesStroke":"#e1e4e8","welcomePage.buttonBackground":"#f6f8fa","welcomePage.buttonHoverBackground":"#e1e4e8"},"displayName":"Vitesse Light","name":"vitesse-light","semanticHighlighting":true,"semanticTokenColors":{"class":"#5a6aa6","interface":"#2e808f","namespace":"#b05a78","property":"#998418","type":"#2e808f"},"tokenColors":[{"scope":["comment","punctuation.definition.comment","string.comment"],"settings":{"foreground":"#a0ada0"}},{"scope":["delimiter.bracket","delimiter","invalid.illegal.character-not-allowed-here.html","keyword.operator.rest","keyword.operator.spread","keyword.operator.type.annotation","keyword.operator.relational","keyword.operator.assignment","keyword.operator.type","meta.brace","meta.tag.block.any.html","meta.tag.inline.any.html","meta.tag.structure.input.void.html","meta.type.annotation","meta.embedded.block.github-actions-expression","storage.type.function.arrow","meta.objectliteral.ts","punctuation","punctuation.definition.string.begin.html.vue","punctuation.definition.string.end.html.vue"],"settings":{"foreground":"#999999"}},{"scope":["constant","entity.name.constant","variable.language","meta.definition.variable"],"settings":{"foreground":"#a65e2b"}},{"scope":["entity","entity.name"],"settings":{"foreground":"#59873a"}},{"scope":"variable.parameter.function","settings":{"foreground":"#393a34"}},{"scope":["entity.name.tag","tag.html"],"settings":{"foreground":"#1e754f"}},{"scope":"entity.name.function","settings":{"foreground":"#59873a"}},{"scope":["keyword","storage.type.class.jsdoc","punctuation.definition.template-expression"],"settings":{"foreground":"#1e754f"}},{"scope":["storage","storage.type","support.type.builtin","constant.language.undefined","constant.language.null","constant.language.import-export-all.ts"],"settings":{"foreground":"#ab5959"}},{"scope":["text.html.derivative","storage.modifier.package","storage.modifier.import","storage.type.java"],"settings":{"foreground":"#393a34"}},{"scope":["string","string punctuation.section.embedded source","attribute.value"],"settings":{"foreground":"#b56959"}},{"scope":["punctuation.definition.string"],"settings":{"foreground":"#b5695977"}},{"scope":["punctuation.support.type.property-name"],"settings":{"foreground":"#99841877"}},{"scope":"support","settings":{"foreground":"#998418"}},{"scope":["property","meta.property-name","meta.object-literal.key","entity.name.tag.yaml","attribute.name"],"settings":{"foreground":"#998418"}},{"scope":["entity.other.attribute-name","invalid.deprecated.entity.other.attribute-name.html"],"settings":{"foreground":"#b07d48"}},{"scope":["variable","identifier"],"settings":{"foreground":"#b07d48"}},{"scope":["support.type.primitive","entity.name.type"],"settings":{"foreground":"#2e8f82"}},{"scope":"namespace","settings":{"foreground":"#b05a78"}},{"scope":["keyword.operator","keyword.operator.assignment.compound","meta.var.expr.ts"],"settings":{"foreground":"#ab5959"}},{"scope":"invalid.broken","settings":{"fontStyle":"italic","foreground":"#b31d28"}},{"scope":"invalid.deprecated","settings":{"fontStyle":"italic","foreground":"#b31d28"}},{"scope":"invalid.illegal","settings":{"fontStyle":"italic","foreground":"#b31d28"}},{"scope":"invalid.unimplemented","settings":{"fontStyle":"italic","foreground":"#b31d28"}},{"scope":"carriage-return","settings":{"background":"#d73a49","content":"^M","fontStyle":"italic underline","foreground":"#fafbfc"}},{"scope":"message.error","settings":{"foreground":"#b31d28"}},{"scope":"string variable","settings":{"foreground":"#b56959"}},{"scope":["source.regexp","string.regexp"],"settings":{"foreground":"#ab5e3f"}},{"scope":["string.regexp.character-class","string.regexp constant.character.escape","string.regexp source.ruby.embedded","string.regexp string.regexp.arbitrary-repitition"],"settings":{"foreground":"#b56959"}},{"scope":"string.regexp constant.character.escape","settings":{"foreground":"#bda437"}},{"scope":["support.constant"],"settings":{"foreground":"#a65e2b"}},{"scope":["keyword.operator.quantifier.regexp","constant.numeric","number"],"settings":{"foreground":"#2f798a"}},{"scope":["keyword.other.unit"],"settings":{"foreground":"#ab5959"}},{"scope":["constant.language.boolean","constant.language"],"settings":{"foreground":"#1e754f"}},{"scope":"meta.module-reference","settings":{"foreground":"#1c6b48"}},{"scope":"punctuation.definition.list.begin.markdown","settings":{"foreground":"#a65e2b"}},{"scope":["markup.heading","markup.heading entity.name"],"settings":{"fontStyle":"bold","foreground":"#1c6b48"}},{"scope":"markup.quote","settings":{"foreground":"#2e808f"}},{"scope":"markup.italic","settings":{"fontStyle":"italic","foreground":"#393a34"}},{"scope":"markup.bold","settings":{"fontStyle":"bold","foreground":"#393a34"}},{"scope":"markup.raw","settings":{"foreground":"#1c6b48"}},{"scope":["markup.deleted","meta.diff.header.from-file","punctuation.definition.deleted"],"settings":{"background":"#ffeef0","foreground":"#b31d28"}},{"scope":["markup.inserted","meta.diff.header.to-file","punctuation.definition.inserted"],"settings":{"background":"#f0fff4","foreground":"#22863a"}},{"scope":["markup.changed","punctuation.definition.changed"],"settings":{"background":"#ffebda","foreground":"#e36209"}},{"scope":["markup.ignored","markup.untracked"],"settings":{"background":"#005cc5","foreground":"#f6f8fa"}},{"scope":"meta.diff.range","settings":{"fontStyle":"bold","foreground":"#6f42c1"}},{"scope":"meta.diff.header","settings":{"foreground":"#005cc5"}},{"scope":"meta.separator","settings":{"fontStyle":"bold","foreground":"#005cc5"}},{"scope":"meta.output","settings":{"foreground":"#005cc5"}},{"scope":["brackethighlighter.tag","brackethighlighter.curly","brackethighlighter.round","brackethighlighter.square","brackethighlighter.angle","brackethighlighter.quote"],"settings":{"foreground":"#586069"}},{"scope":"brackethighlighter.unmatched","settings":{"foreground":"#b31d28"}},{"scope":["constant.other.reference.link","string.other.link","punctuation.definition.string.begin.markdown","punctuation.definition.string.end.markdown"],"settings":{"foreground":"#b56959"}},{"scope":["markup.underline.link.markdown","markup.underline.link.image.markdown"],"settings":{"fontStyle":"underline","foreground":"#393a3490"}},{"scope":["type.identifier","constant.other.character-class.regexp"],"settings":{"foreground":"#5a6aa6"}},{"scope":["entity.other.attribute-name.html.vue"],"settings":{"foreground":"#59873a"}},{"scope":["invalid.illegal.unrecognized-tag.html"],"settings":{"fontStyle":"normal"}}],"type":"light"}'));export{e as default};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
const n=Object.freeze(JSON.parse('{"displayName":"JSON","name":"json","patterns":[{"include":"#value"}],"repository":{"array":{"begin":"\\\\[","beginCaptures":{"0":{"name":"punctuation.definition.array.begin.json"}},"end":"]","endCaptures":{"0":{"name":"punctuation.definition.array.end.json"}},"name":"meta.structure.array.json","patterns":[{"include":"#value"},{"match":",","name":"punctuation.separator.array.json"},{"match":"[^]\\\\s]","name":"invalid.illegal.expected-array-separator.json"}]},"comments":{"patterns":[{"begin":"/\\\\*\\\\*(?!/)","captures":{"0":{"name":"punctuation.definition.comment.json"}},"end":"\\\\*/","name":"comment.block.documentation.json"},{"begin":"/\\\\*","captures":{"0":{"name":"punctuation.definition.comment.json"}},"end":"\\\\*/","name":"comment.block.json"},{"captures":{"1":{"name":"punctuation.definition.comment.json"}},"match":"(//).*$\\\\n?","name":"comment.line.double-slash.js"}]},"constant":{"match":"\\\\b(?:true|false|null)\\\\b","name":"constant.language.json"},"number":{"match":"-?(?:0|[1-9]\\\\d*)(?:(?:\\\\.\\\\d+)?(?:[Ee][-+]?\\\\d+)?)?","name":"constant.numeric.json"},"object":{"begin":"\\\\{","beginCaptures":{"0":{"name":"punctuation.definition.dictionary.begin.json"}},"end":"}","endCaptures":{"0":{"name":"punctuation.definition.dictionary.end.json"}},"name":"meta.structure.dictionary.json","patterns":[{"include":"#objectkey"},{"include":"#comments"},{"begin":":","beginCaptures":{"0":{"name":"punctuation.separator.dictionary.key-value.json"}},"end":"(,)|(?=})","endCaptures":{"1":{"name":"punctuation.separator.dictionary.pair.json"}},"name":"meta.structure.dictionary.value.json","patterns":[{"include":"#value"},{"match":"[^,\\\\s]","name":"invalid.illegal.expected-dictionary-separator.json"}]},{"match":"[^}\\\\s]","name":"invalid.illegal.expected-dictionary-separator.json"}]},"objectkey":{"begin":"\\"","beginCaptures":{"0":{"name":"punctuation.support.type.property-name.begin.json"}},"end":"\\"","endCaptures":{"0":{"name":"punctuation.support.type.property-name.end.json"}},"name":"string.json support.type.property-name.json","patterns":[{"include":"#stringcontent"}]},"string":{"begin":"\\"","beginCaptures":{"0":{"name":"punctuation.definition.string.begin.json"}},"end":"\\"","endCaptures":{"0":{"name":"punctuation.definition.string.end.json"}},"name":"string.quoted.double.json","patterns":[{"include":"#stringcontent"}]},"stringcontent":{"patterns":[{"match":"\\\\\\\\(?:[\\"/\\\\\\\\bfnrt]|u\\\\h{4})","name":"constant.character.escape.json"},{"match":"\\\\\\\\.","name":"invalid.illegal.unrecognized-string-escape.json"}]},"value":{"patterns":[{"include":"#constant"},{"include":"#number"},{"include":"#string"},{"include":"#array"},{"include":"#object"},{"include":"#comments"}]}},"scopeName":"source.json"}')),e=[n];export{e as default};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
const e=Object.freeze(JSON.parse('{"colors":{"activityBar.activeBorder":"#4d9375","activityBar.background":"#121212","activityBar.border":"#191919","activityBar.foreground":"#dbd7caee","activityBar.inactiveForeground":"#dedcd550","activityBarBadge.background":"#bfbaaa","activityBarBadge.foreground":"#121212","badge.background":"#dedcd590","badge.foreground":"#121212","breadcrumb.activeSelectionForeground":"#eeeeee18","breadcrumb.background":"#181818","breadcrumb.focusForeground":"#dbd7caee","breadcrumb.foreground":"#959da5","breadcrumbPicker.background":"#121212","button.background":"#4d9375","button.foreground":"#121212","button.hoverBackground":"#4d9375","checkbox.background":"#181818","checkbox.border":"#2f363d","debugToolBar.background":"#121212","descriptionForeground":"#dedcd590","diffEditor.insertedTextBackground":"#4d937550","diffEditor.removedTextBackground":"#ab595950","dropdown.background":"#121212","dropdown.border":"#191919","dropdown.foreground":"#dbd7caee","dropdown.listBackground":"#181818","editor.background":"#121212","editor.findMatchBackground":"#e6cc7722","editor.findMatchHighlightBackground":"#e6cc7744","editor.focusedStackFrameHighlightBackground":"#b808","editor.foldBackground":"#eeeeee10","editor.foreground":"#dbd7caee","editor.inactiveSelectionBackground":"#eeeeee10","editor.lineHighlightBackground":"#181818","editor.selectionBackground":"#eeeeee18","editor.selectionHighlightBackground":"#eeeeee10","editor.stackFrameHighlightBackground":"#a707","editor.wordHighlightBackground":"#1c6b4805","editor.wordHighlightStrongBackground":"#1c6b4810","editorBracketHighlight.foreground1":"#5eaab5","editorBracketHighlight.foreground2":"#4d9375","editorBracketHighlight.foreground3":"#d4976c","editorBracketHighlight.foreground4":"#d9739f","editorBracketHighlight.foreground5":"#e6cc77","editorBracketHighlight.foreground6":"#6394bf","editorBracketMatch.background":"#4d937520","editorError.foreground":"#cb7676","editorGroup.border":"#191919","editorGroupHeader.tabsBackground":"#121212","editorGroupHeader.tabsBorder":"#191919","editorGutter.addedBackground":"#4d9375","editorGutter.commentRangeForeground":"#dedcd550","editorGutter.deletedBackground":"#cb7676","editorGutter.foldingControlForeground":"#dedcd590","editorGutter.modifiedBackground":"#6394bf","editorHint.foreground":"#4d9375","editorIndentGuide.activeBackground":"#ffffff30","editorIndentGuide.background":"#ffffff15","editorInfo.foreground":"#6394bf","editorInlayHint.background":"#181818","editorInlayHint.foreground":"#666666","editorLineNumber.activeForeground":"#bfbaaa","editorLineNumber.foreground":"#dedcd550","editorOverviewRuler.border":"#111","editorStickyScroll.background":"#181818","editorStickyScrollHover.background":"#181818","editorWarning.foreground":"#d4976c","editorWhitespace.foreground":"#ffffff15","editorWidget.background":"#121212","errorForeground":"#cb7676","focusBorder":"#00000000","foreground":"#dbd7caee","gitDecoration.addedResourceForeground":"#4d9375","gitDecoration.conflictingResourceForeground":"#d4976c","gitDecoration.deletedResourceForeground":"#cb7676","gitDecoration.ignoredResourceForeground":"#dedcd550","gitDecoration.modifiedResourceForeground":"#6394bf","gitDecoration.submoduleResourceForeground":"#dedcd590","gitDecoration.untrackedResourceForeground":"#5eaab5","input.background":"#181818","input.border":"#191919","input.foreground":"#dbd7caee","input.placeholderForeground":"#dedcd590","inputOption.activeBackground":"#dedcd550","list.activeSelectionBackground":"#181818","list.activeSelectionForeground":"#dbd7caee","list.focusBackground":"#181818","list.highlightForeground":"#4d9375","list.hoverBackground":"#181818","list.hoverForeground":"#dbd7caee","list.inactiveFocusBackground":"#121212","list.inactiveSelectionBackground":"#181818","list.inactiveSelectionForeground":"#dbd7caee","menu.separatorBackground":"#191919","notificationCenterHeader.background":"#121212","notificationCenterHeader.foreground":"#959da5","notifications.background":"#121212","notifications.border":"#191919","notifications.foreground":"#dbd7caee","notificationsErrorIcon.foreground":"#cb7676","notificationsInfoIcon.foreground":"#6394bf","notificationsWarningIcon.foreground":"#d4976c","panel.background":"#121212","panel.border":"#191919","panelInput.border":"#2f363d","panelTitle.activeBorder":"#4d9375","panelTitle.activeForeground":"#dbd7caee","panelTitle.inactiveForeground":"#959da5","peekViewEditor.background":"#121212","peekViewEditor.matchHighlightBackground":"#ffd33d33","peekViewResult.background":"#121212","peekViewResult.matchHighlightBackground":"#ffd33d33","pickerGroup.border":"#191919","pickerGroup.foreground":"#dbd7caee","problemsErrorIcon.foreground":"#cb7676","problemsInfoIcon.foreground":"#6394bf","problemsWarningIcon.foreground":"#d4976c","progressBar.background":"#4d9375","quickInput.background":"#121212","quickInput.foreground":"#dbd7caee","quickInputList.focusBackground":"#181818","scrollbar.shadow":"#0000","scrollbarSlider.activeBackground":"#dedcd550","scrollbarSlider.background":"#dedcd510","scrollbarSlider.hoverBackground":"#dedcd550","settings.headerForeground":"#dbd7caee","settings.modifiedItemIndicator":"#4d9375","sideBar.background":"#121212","sideBar.border":"#191919","sideBar.foreground":"#bfbaaa","sideBarSectionHeader.background":"#121212","sideBarSectionHeader.border":"#191919","sideBarSectionHeader.foreground":"#dbd7caee","sideBarTitle.foreground":"#dbd7caee","statusBar.background":"#121212","statusBar.border":"#191919","statusBar.debuggingBackground":"#181818","statusBar.debuggingForeground":"#bfbaaa","statusBar.foreground":"#bfbaaa","statusBar.noFolderBackground":"#121212","statusBarItem.prominentBackground":"#181818","tab.activeBackground":"#121212","tab.activeBorder":"#191919","tab.activeBorderTop":"#dedcd590","tab.activeForeground":"#dbd7caee","tab.border":"#191919","tab.hoverBackground":"#181818","tab.inactiveBackground":"#121212","tab.inactiveForeground":"#959da5","tab.unfocusedActiveBorder":"#191919","tab.unfocusedActiveBorderTop":"#191919","tab.unfocusedHoverBackground":"#121212","terminal.ansiBlack":"#393a34","terminal.ansiBlue":"#6394bf","terminal.ansiBrightBlack":"#777777","terminal.ansiBrightBlue":"#6394bf","terminal.ansiBrightCyan":"#5eaab5","terminal.ansiBrightGreen":"#4d9375","terminal.ansiBrightMagenta":"#d9739f","terminal.ansiBrightRed":"#cb7676","terminal.ansiBrightWhite":"#ffffff","terminal.ansiBrightYellow":"#e6cc77","terminal.ansiCyan":"#5eaab5","terminal.ansiGreen":"#4d9375","terminal.ansiMagenta":"#d9739f","terminal.ansiRed":"#cb7676","terminal.ansiWhite":"#dbd7ca","terminal.ansiYellow":"#e6cc77","terminal.foreground":"#dbd7caee","terminal.selectionBackground":"#eeeeee18","textBlockQuote.background":"#121212","textBlockQuote.border":"#191919","textCodeBlock.background":"#121212","textLink.activeForeground":"#4d9375","textLink.foreground":"#4d9375","textPreformat.foreground":"#d1d5da","textSeparator.foreground":"#586069","titleBar.activeBackground":"#121212","titleBar.activeForeground":"#bfbaaa","titleBar.border":"#181818","titleBar.inactiveBackground":"#121212","titleBar.inactiveForeground":"#959da5","tree.indentGuidesStroke":"#2f363d","welcomePage.buttonBackground":"#2f363d","welcomePage.buttonHoverBackground":"#444d56"},"displayName":"Vitesse Dark","name":"vitesse-dark","semanticHighlighting":true,"semanticTokenColors":{"class":"#6872ab","interface":"#5d99a9","namespace":"#db889a","property":"#b8a965","type":"#5d99a9"},"tokenColors":[{"scope":["comment","punctuation.definition.comment","string.comment"],"settings":{"foreground":"#758575dd"}},{"scope":["delimiter.bracket","delimiter","invalid.illegal.character-not-allowed-here.html","keyword.operator.rest","keyword.operator.spread","keyword.operator.type.annotation","keyword.operator.relational","keyword.operator.assignment","keyword.operator.type","meta.brace","meta.tag.block.any.html","meta.tag.inline.any.html","meta.tag.structure.input.void.html","meta.type.annotation","meta.embedded.block.github-actions-expression","storage.type.function.arrow","meta.objectliteral.ts","punctuation","punctuation.definition.string.begin.html.vue","punctuation.definition.string.end.html.vue"],"settings":{"foreground":"#666666"}},{"scope":["constant","entity.name.constant","variable.language","meta.definition.variable"],"settings":{"foreground":"#c99076"}},{"scope":["entity","entity.name"],"settings":{"foreground":"#80a665"}},{"scope":"variable.parameter.function","settings":{"foreground":"#dbd7caee"}},{"scope":["entity.name.tag","tag.html"],"settings":{"foreground":"#4d9375"}},{"scope":"entity.name.function","settings":{"foreground":"#80a665"}},{"scope":["keyword","storage.type.class.jsdoc","punctuation.definition.template-expression"],"settings":{"foreground":"#4d9375"}},{"scope":["storage","storage.type","support.type.builtin","constant.language.undefined","constant.language.null","constant.language.import-export-all.ts"],"settings":{"foreground":"#cb7676"}},{"scope":["text.html.derivative","storage.modifier.package","storage.modifier.import","storage.type.java"],"settings":{"foreground":"#dbd7caee"}},{"scope":["string","string punctuation.section.embedded source","attribute.value"],"settings":{"foreground":"#c98a7d"}},{"scope":["punctuation.definition.string"],"settings":{"foreground":"#c98a7d77"}},{"scope":["punctuation.support.type.property-name"],"settings":{"foreground":"#b8a96577"}},{"scope":"support","settings":{"foreground":"#b8a965"}},{"scope":["property","meta.property-name","meta.object-literal.key","entity.name.tag.yaml","attribute.name"],"settings":{"foreground":"#b8a965"}},{"scope":["entity.other.attribute-name","invalid.deprecated.entity.other.attribute-name.html"],"settings":{"foreground":"#bd976a"}},{"scope":["variable","identifier"],"settings":{"foreground":"#bd976a"}},{"scope":["support.type.primitive","entity.name.type"],"settings":{"foreground":"#5DA994"}},{"scope":"namespace","settings":{"foreground":"#db889a"}},{"scope":["keyword.operator","keyword.operator.assignment.compound","meta.var.expr.ts"],"settings":{"foreground":"#cb7676"}},{"scope":"invalid.broken","settings":{"fontStyle":"italic","foreground":"#fdaeb7"}},{"scope":"invalid.deprecated","settings":{"fontStyle":"italic","foreground":"#fdaeb7"}},{"scope":"invalid.illegal","settings":{"fontStyle":"italic","foreground":"#fdaeb7"}},{"scope":"invalid.unimplemented","settings":{"fontStyle":"italic","foreground":"#fdaeb7"}},{"scope":"carriage-return","settings":{"background":"#f97583","content":"^M","fontStyle":"italic underline","foreground":"#24292e"}},{"scope":"message.error","settings":{"foreground":"#fdaeb7"}},{"scope":"string variable","settings":{"foreground":"#c98a7d"}},{"scope":["source.regexp","string.regexp"],"settings":{"foreground":"#c4704f"}},{"scope":["string.regexp.character-class","string.regexp constant.character.escape","string.regexp source.ruby.embedded","string.regexp string.regexp.arbitrary-repitition"],"settings":{"foreground":"#c98a7d"}},{"scope":"string.regexp constant.character.escape","settings":{"foreground":"#e6cc77"}},{"scope":["support.constant"],"settings":{"foreground":"#c99076"}},{"scope":["keyword.operator.quantifier.regexp","constant.numeric","number"],"settings":{"foreground":"#4C9A91"}},{"scope":["keyword.other.unit"],"settings":{"foreground":"#cb7676"}},{"scope":["constant.language.boolean","constant.language"],"settings":{"foreground":"#4d9375"}},{"scope":"meta.module-reference","settings":{"foreground":"#4d9375"}},{"scope":"punctuation.definition.list.begin.markdown","settings":{"foreground":"#d4976c"}},{"scope":["markup.heading","markup.heading entity.name"],"settings":{"fontStyle":"bold","foreground":"#4d9375"}},{"scope":"markup.quote","settings":{"foreground":"#5d99a9"}},{"scope":"markup.italic","settings":{"fontStyle":"italic","foreground":"#dbd7caee"}},{"scope":"markup.bold","settings":{"fontStyle":"bold","foreground":"#dbd7caee"}},{"scope":"markup.raw","settings":{"foreground":"#4d9375"}},{"scope":["markup.deleted","meta.diff.header.from-file","punctuation.definition.deleted"],"settings":{"background":"#86181d","foreground":"#fdaeb7"}},{"scope":["markup.inserted","meta.diff.header.to-file","punctuation.definition.inserted"],"settings":{"background":"#144620","foreground":"#85e89d"}},{"scope":["markup.changed","punctuation.definition.changed"],"settings":{"background":"#c24e00","foreground":"#ffab70"}},{"scope":["markup.ignored","markup.untracked"],"settings":{"background":"#79b8ff","foreground":"#2f363d"}},{"scope":"meta.diff.range","settings":{"fontStyle":"bold","foreground":"#b392f0"}},{"scope":"meta.diff.header","settings":{"foreground":"#79b8ff"}},{"scope":"meta.separator","settings":{"fontStyle":"bold","foreground":"#79b8ff"}},{"scope":"meta.output","settings":{"foreground":"#79b8ff"}},{"scope":["brackethighlighter.tag","brackethighlighter.curly","brackethighlighter.round","brackethighlighter.square","brackethighlighter.angle","brackethighlighter.quote"],"settings":{"foreground":"#d1d5da"}},{"scope":"brackethighlighter.unmatched","settings":{"foreground":"#fdaeb7"}},{"scope":["constant.other.reference.link","string.other.link","punctuation.definition.string.begin.markdown","punctuation.definition.string.end.markdown"],"settings":{"foreground":"#c98a7d"}},{"scope":["markup.underline.link.markdown","markup.underline.link.image.markdown"],"settings":{"fontStyle":"underline","foreground":"#dedcd590"}},{"scope":["type.identifier","constant.other.character-class.regexp"],"settings":{"foreground":"#6872ab"}},{"scope":["entity.other.attribute-name.html.vue"],"settings":{"foreground":"#80a665"}},{"scope":["invalid.illegal.unrecognized-tag.html"],"settings":{"fontStyle":"normal"}}],"type":"dark"}'));export{e as default};
|