switch to # routes to avoid issues on live website

This commit is contained in:
2023-03-20 20:28:17 +01:00
parent ede32735c3
commit c659f447ac
+2 -2
View File
@@ -1,8 +1,8 @@
import { createRouter, createWebHistory } from 'vue-router'
import {createRouter, createWebHashHistory} from 'vue-router'
import HomeView from '../views/HomeView.vue'
const router = createRouter({
history: createWebHistory(import.meta.env.BASE_URL),
history: createWebHashHistory(import.meta.env.BASE_URL),
routes: [
{
path: '/',