File size: 307 Bytes
794cf6c
 
dd99b77
7a07363
 
 
 
 
794cf6c
 
 
 
 
dd99b77
 
794cf6c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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;