mirror of
https://github.com/prurigro/hypothetical.git
synced 2024-11-09 11:16:39 -05:00
Fix broken 404 page
This commit is contained in:
parent
719b932ac7
commit
b758203d06
1 changed files with 1 additions and 1 deletions
|
@ -52,7 +52,7 @@ const router = new createRouter({
|
||||||
{ path: "/", component: HomePage },
|
{ path: "/", component: HomePage },
|
||||||
{ path: "/blog", component: BlogPage },
|
{ path: "/blog", component: BlogPage },
|
||||||
{ path: "/contact", component: ContactPage },
|
{ path: "/contact", component: ContactPage },
|
||||||
{ path: "/:match(.*)", component: Error404 }
|
{ path: "/:match(.*)", component: Error404Page }
|
||||||
],
|
],
|
||||||
|
|
||||||
scrollBehavior(to, from, savedPosition) {
|
scrollBehavior(to, from, savedPosition) {
|
||||||
|
|
Loading…
Reference in a new issue