We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6b3371 commit 1b07b9fCopy full SHA for 1b07b9f
1 file changed
app/assets/router/index.ts
@@ -1,5 +1,6 @@
1
import AccountRoutes from '@userfrosting/sprinkle-account/routes'
2
import AdminRoutes from '@userfrosting/sprinkle-admin/routes'
3
+import ErrorRoutes from '@userfrosting/sprinkle-core/routes'
4
import { createRouter, createWebHistory } from 'vue-router'
5
6
const router = createRouter({
@@ -24,7 +25,8 @@ const router = createRouter({
24
25
component: () => import('../views/AboutView.vue')
26
},
27
// Include sprinkles routes
- ...AccountRoutes
28
+ ...AccountRoutes,
29
+ ...ErrorRoutes
30
]
31
32
{
0 commit comments