Spaces:
Running
Running
| import "./app.css"; | |
| import App from "./App.svelte"; | |
| import { consoleSyncService } from "./lib/services/console-sync"; | |
| import gsap from "gsap"; | |
| gsap.config({ | |
| nullTargetWarn: false, | |
| }); | |
| const app = new App({ | |
| target: document.getElementById("app")!, | |
| }); | |
| consoleSyncService.setup(); | |
| export default app; | |