Skip to content

Commit

Permalink
router fix (#535)
Browse files Browse the repository at this point in the history
  • Loading branch information
stanislawK authored Jul 12, 2023
1 parent b33d8e2 commit fbff5b1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/router.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { createRouter, createWebHashHistory } from 'vue-router';
import { createRouter, createWebHistory } from 'vue-router';
import HomePage from './components/HomePage/HomePage.vue';
import LoginForm from './components/Login/LoginForm.vue';
import DashboardMain from './components/Dashboard/DashboardMain.vue';
Expand All @@ -22,6 +22,6 @@ const routes = [
];

export default createRouter({
history: createWebHashHistory(),
history: createWebHistory(),
routes,
});

0 comments on commit fbff5b1

Please sign in to comment.