Initial commit

This commit is contained in:
2025-12-17 16:47:48 +00:00
commit 13813f3363
4964 changed files with 1079753 additions and 0 deletions

13
client/app/main.js Normal file
View File

@@ -0,0 +1,13 @@
import "./css/app.css"
import App from "./src/App.svelte"
import { mount } from "svelte";
const params = new URLSearchParams(window.location.search)
const mode = params.get("mode") || "player" // can be of [player, studio, server] to access 3 different UIs
const app = mount(App, {
target: document.getElementById("app"),
props: { mode }
})
export default app