import { mount } from 'svelte'; import index from './index.svelte'; import './index.css'; const root = document.querySelector('#root')!; const app = mount(index, { target: root });