This commit is contained in:
Benjamin Palko 2024-12-31 11:01:52 -05:00
parent c5b6a1e38d
commit 18f1b78ca4
19 changed files with 20 additions and 20 deletions

View file

@ -6,7 +6,7 @@ builder.queryType({});
builder.queryField('version', (t) => builder.queryField('version', (t) =>
t.string({ t.string({
description: 'Application version', description: 'Application version',
resolve: () => version resolve: () => version,
}) })
); );

View file

@ -9,7 +9,7 @@ const config = {
kit: { kit: {
version: { version: {
name: '1.0.0-alpha' name: '1.0.0-alpha',
}, },
// adapter-auto only supports some environments, see https://svelte.dev/docs/kit/adapter-auto for a list. // adapter-auto only supports some environments, see https://svelte.dev/docs/kit/adapter-auto for a list.
// If your environment is not supported, or you settled on a specific environment, switch out the adapter. // If your environment is not supported, or you settled on a specific environment, switch out the adapter.