Add Svelte GUI, FIT encoder and README

Standalone binary embeds the frontend, avoiding the dev-server dependency
that made the window fail to load.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This commit is contained in:
2026-08-05 13:50:01 +02:00
co-authored by Claude Opus 5
parent 7c17ca6158
commit 3a2a787b7d
23 changed files with 3297 additions and 46 deletions
+8
View File
@@ -0,0 +1,8 @@
import { mount } from 'svelte';
import './app.css';
import App from './App.svelte';
const target = document.getElementById('app');
if (!target) throw new Error('#app mount point missing from index.html');
export default mount(App, { target });