Stash_Go / frontend /src /main.ts
Abhyudit22
fixed errors
0347fce
Raw
History Blame Contribute Delete
248 Bytes
import './app.css'
import { mount } from 'svelte'
import App from './App.svelte'
// Securely target the root DOM container using Svelte 5 mounting mechanics
const app = mount(App, {
target: document.getElementById('app')!,
})
export default app