rebuild websites with svelte

still early WIP

Signed-off-by: Peter Siegmund <developer@mars3142.org>
This commit is contained in:
2026-01-25 09:24:19 +01:00
parent 81141d8859
commit 955b4bef04
18 changed files with 1956 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
import { mount } from 'svelte'
import App from './App.svelte'
import './app.css'
const app = mount(App, {
target: document.getElementById('app'),
})
export default app