VibeGame / src /main.ts
dylanebert
gsap safety
7a07363
raw
history blame contribute delete
307 Bytes
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;