1
0
mirror of https://github.com/djkotowski/personal-website.git synced 2026-06-20 13:02:47 -05:00

Update Svelte and other dependencies

This commit is contained in:
2025-03-11 00:26:45 -05:00
parent 1e652d9818
commit fc0d884cce
11 changed files with 525 additions and 1033 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