Skip to content
This repository was archived by the owner on Feb 28, 2025. It is now read-only.

Commit 21d57fc

Browse files
deactivate authentication guard
1 parent 2bc1f7e commit 21d57fc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/router/index.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
import { createRouter, createWebHistory } from "vue-router";
2-
import { isAuthenticatedGuard } from "./guards";
32
import { routes } from "./routes";
43

54
const router = createRouter({
65
history: createWebHistory("/"),
76
routes,
87
});
98

10-
router.beforeEach(isAuthenticatedGuard);
9+
// TODO add authentication
10+
// router.beforeEach(isAuthenticatedGuard);
1111

1212
export default router;

0 commit comments

Comments
 (0)