big updats

This commit is contained in:
Daniel Ledda
2025-12-20 00:10:42 +01:00
parent a93ffff00d
commit 51e44db779
25 changed files with 570 additions and 203 deletions

View File

@@ -1,7 +1,7 @@
import { createSSRApp } from "vue";
import DJHomeRoot from "@/home/DJHomeRoot.tsx";
import DjHomeRoot from "@/home/DjHomeRoot.tsx";
export default function createApp() {
const app = createSSRApp(DJHomeRoot);
const app = createSSRApp(DjHomeRoot);
return { app, router: null };
}