From f152d39db802ebe2368ae3659d2ca3dd0bbbf1cc Mon Sep 17 00:00:00 2001 From: "johannes.vos" Date: Thu, 14 May 2026 15:55:58 +0200 Subject: [PATCH] fix: use camelCase for not-found route name --- src/router/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/router/index.js b/src/router/index.js index f209bef..9cafcb6 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -39,7 +39,7 @@ const routes = [ }, { path: '/:pathMatch(.*)*', - name: 'not-found', + name: 'notFound', component: NotFound }, ];