init 2
Build / Build-image (push) Failing after 5s

This commit is contained in:
2026-08-08 23:51:17 +02:00
parent bb7a17a874
commit 7bb26eeb43
21 changed files with 634 additions and 818 deletions
+1 -7
View File
@@ -1,18 +1,12 @@
import { createRouter, createWebHistory } from 'vue-router';
import App from '../App.vue';
import BirthdayView from '../pages/BirthdayView.vue';
import TestingView from '../pages/TestingView.vue';
import HomeView from '../pages/HomeView.vue';
import NewsView from '../pages/NewsView.vue';
const routes = [
{ path: '/',
children:
[
{ path: '', component: BirthdayView },
{ path: 'aero', component: TestingView },
{ path: 'home', component: HomeView },
{ path: 'hearsay', component: NewsView },
{ path: '', component: HomeView },
]
}
];