This commit is contained in:
Daniel Ledda
2024-11-01 18:50:26 +01:00
parent 7539e6ed48
commit f8a0cd50f8
7 changed files with 143 additions and 203 deletions

View File

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