ui: Almost all interface done with Svelte

This commit is contained in:
nemunaire 2021-08-30 12:46:18 +02:00
parent 9fa1ede69c
commit 7e13cf28bd
54 changed files with 2809 additions and 16 deletions

View file

@ -1,6 +1,12 @@
/** @type {import('@sveltejs/kit').Config} */
import adapt from '@sveltejs/adapter-static';
const config = {
kit: {
adapter: adapt({
fallback: 'index.html'
}),
ssr: false,
// hydrate the <div id="svelte"> element in src/app.html
target: '#svelte'
}