Skip to content
Snippets Groups Projects
Commit 655c47e9 authored by Griefed's avatar Griefed :joystick:
Browse files

feat: Wrap 404 in MainLayout

parent 2f04c6ad
No related branches found
No related tags found
No related merge requests found
...@@ -12,7 +12,10 @@ const routes = [ ...@@ -12,7 +12,10 @@ const routes = [
// but you can also remove it // but you can also remove it
{ {
path: '/:catchAll(.*)*', path: '/:catchAll(.*)*',
component: () => import('pages/Error404.vue') component: () => import('layouts/MainLayout.vue'),
children: [
{ path: '', component: () => import('pages/Error404.vue') }
]
} }
] ]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment