Skip to content

Commit

Permalink
chore(sample): Changed history mode in router
Browse files Browse the repository at this point in the history
  • Loading branch information
jnt0r committed Apr 7, 2022
1 parent 059cf29 commit ea2fb17
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions samples/simple-vue3-sample/src/router.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import {createRouter, createWebHashHistory} from "vue-router";
import {createRouter, createWebHistory} from "vue-router";
import Home from "@/views/Home";
import { AuthenticationGuard } from "vue-auth0-plugin";

export let router = createRouter({
history: createWebHashHistory(process.env.BASE_URL),
history: createWebHistory(),
routes: [
{
path: '/',
Expand Down

0 comments on commit ea2fb17

Please sign in to comment.