Files
risuai/src/main.ts
2023-05-27 23:15:23 +09:00

16 lines
339 B
TypeScript

import "./styles.css";
import "core-js/actual"
import App from "./App.svelte";
import { loadData } from "./ts/storage/globalApi";
import { initHotkey } from "./ts/hotkey";
import { polyfill } from "./ts/polyfill";
polyfill()
const app = new App({
target: document.getElementById("app"),
});
loadData()
initHotkey()
export default app;