16 lines
339 B
TypeScript
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; |