feature/tauri-v2
ts 12 lines 220 Bytes
Raw
1 import "./theme.scss";
2 import "./global.css";
3 import App from './App.svelte';
4 import { attachConsole } from "tauri-plugin-log-api";
5
6 attachConsole();
7
8 const app = new App({
9 target: document.body
10 });
11
12 export default app;