Rename frontend dir, update README.

This commit is contained in:
Leo Vasanko
2023-11-11 14:54:30 +00:00
parent 5d32396127
commit 82bc449bbc
93 changed files with 5 additions and 3 deletions

View File

@@ -0,0 +1,15 @@
import { createRouter, createWebHashHistory } from 'vue-router'
import ExplorerView from '@/views/ExplorerView.vue'
const router = createRouter({
history: createWebHashHistory(import.meta.env.BASE_URL),
routes: [
{
path: '/:pathMatch(.*)*',
name: 'explorer',
component: ExplorerView
}
]
})
export default router