Files
BikeControl/ui/src/main.ts
T
dtourolleandClaude Opus 5 3a2a787b7d 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>
2026-08-05 13:50:01 +02:00

9 lines
246 B
TypeScript

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 });