/ src / entrypoints / options / main.ts
main.ts
1  import { mount } from 'svelte';
2  import App from './App.svelte';
3  import '../../assets/styles/global.css';
4  
5  const app = mount(App, {
6    target: document.getElementById('app')!,
7  });
8  
9  export default app;