Migrate to newer version of things

This commit is contained in:
2025-10-04 10:20:42 +07:00
parent 7c3cc4daba
commit bba23bc7e2
11 changed files with 963 additions and 1576 deletions
+3 -2
View File
@@ -1,8 +1,9 @@
import { mount } from 'svelte'
import './app.css'
import App from './App.svelte'
const app = new App({
target: document.getElementById('app')!,
const app = mount(App, {
target: document.getElementById('app')!,
})
export default app