feat(*): Redesign UI to improve UX

This commit is contained in:
Josh Creek
2026-07-13 21:20:04 +01:00
parent ee143e607a
commit 6517fcb373
25 changed files with 4946 additions and 2387 deletions
+7 -6
View File
@@ -3,12 +3,13 @@ import staticAdapter from '@sveltejs/adapter-static';
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
const deployTarget = (process.env.DEPLOY_TARGET ?? 'docker').toLowerCase();
const adapter = deployTarget === 'netlify'
? netlifyAdapter()
: staticAdapter({
fallback: 'index.html',
strict: false
});
const adapter =
deployTarget === 'netlify'
? netlifyAdapter()
: staticAdapter({
fallback: 'index.html',
strict: false
});
/** @type {import('@sveltejs/kit').Config} */
const config = {