Fix broken 404 page

This commit is contained in:
Kevin MacMartin 2022-10-20 21:33:40 -04:00
parent 719b932ac7
commit b758203d06

View file

@ -52,7 +52,7 @@ const router = new createRouter({
{ path: "/", component: HomePage },
{ path: "/blog", component: BlogPage },
{ path: "/contact", component: ContactPage },
{ path: "/:match(.*)", component: Error404 }
{ path: "/:match(.*)", component: Error404Page }
],
scrollBehavior(to, from, savedPosition) {