Revert "restart frontend development (now vite)"

This reverts commit b0891022e7.
This commit is contained in:
janis
2023-10-19 13:00:08 +02:00
parent b0891022e7
commit 801a646a4d
28 changed files with 26157 additions and 342 deletions

View File

@@ -1,15 +1,17 @@
import { createRouter, createWebHistory } from 'vue-router'
import HomeView from '../views/HomeView.vue'
const routes = [
{
path: '/',
name: 'home',
component: HomeView
},
]
const router = createRouter({
history: createWebHistory(import.meta.env.BASE_URL),
routes: [
{
path: '/',
name: 'home',
component: HomeView
},
]
history: createWebHistory(process.env.BASE_URL),
routes
})
export default router