🎉first frontend commit (WIP)

This commit is contained in:
pixii
2025-03-04 09:43:45 +01:00
parent e91fc6ce93
commit 3217b2c4c3
37 changed files with 5501 additions and 0 deletions

11
frontend/src/main.ts Normal file
View File

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