Files
zep/src/main.ts
T
2026-04-04 15:29:23 -04:00

14 lines
296 B
TypeScript

// src/main.ts
import { mount } from "svelte";
import "@fortawesome/fontawesome-free/css/all.min.css";
import "./index.css";
import App from "./App.svelte";
console.log("Ditchcord: Starting app...");
const app = mount(App, {
target: document.getElementById("root")!,
});
export default app;