From b758203d0694073606fa02f8bd91fc12e5f9754c Mon Sep 17 00:00:00 2001 From: Kevin MacMartin Date: Thu, 20 Oct 2022 21:33:40 -0400 Subject: [PATCH] Fix broken 404 page --- resources/js/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/js/app.js b/resources/js/app.js index 66f6fb1..439a4b8 100644 --- a/resources/js/app.js +++ b/resources/js/app.js @@ -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) {