aboutsummaryrefslogtreecommitdiff
path: root/front-end/src/router/index.ts
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2024-06-05 15:26:15 -0400
committerLibravatar vnugent <public@vaughnnugent.com>2024-06-05 15:26:15 -0400
commiteefba88ac4e2c70517aa71c79ed94c346f9de554 (patch)
tree3bfea4b8006b9b4a7e0985b34c3560597a133404 /front-end/src/router/index.ts
parent9eed4022a79f2cba139c9f8a359bfc8c1f9c31c5 (diff)
chore: Package updates
Diffstat (limited to 'front-end/src/router/index.ts')
-rw-r--r--front-end/src/router/index.ts4
1 files changed, 3 insertions, 1 deletions
diff --git a/front-end/src/router/index.ts b/front-end/src/router/index.ts
index 2060965..4238621 100644
--- a/front-end/src/router/index.ts
+++ b/front-end/src/router/index.ts
@@ -5,9 +5,11 @@ import { includes, map, toLower } from 'lodash-es';
import { type Router } from 'vue-router';
import { createRouter, createWebHistory } from 'vue-router/auto'
+import { routes } from 'vue-router/auto-routes'
export default createRouter({
- history: createWebHistory(import.meta.env.BASE_URL)
+ history: createWebHistory(import.meta.env.BASE_URL),
+ routes
})
/**