Files
risuai/src/main.ts
2023-11-08 16:33:53 +09:00

18 lines
419 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";
import { watchParamButton } from "./ts/plugins/embedscript";
polyfill()
const app = new App({
target: document.getElementById("app"),
});
loadData()
initHotkey()
watchParamButton()
export default app;