From 92ef3b85c8c99ced137424046e70e60103fb1c1e Mon Sep 17 00:00:00 2001 From: sy296565890 <85245446+sy296565890@users.noreply.github.com> Date: Mon, 26 Feb 2024 00:06:08 +0800 Subject: [PATCH] Update routes.ts Uncaught Error: Absolute route path "/*" nested under path "/user" is not valid. An absolute child route path must start with the combined path of all its parent routes. --- config/routes.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/routes.ts b/config/routes.ts index 2a28febd..aaf6f182 100644 --- a/config/routes.ts +++ b/config/routes.ts @@ -39,7 +39,7 @@ export default [ }, { component: '404', - path: '/*', + path: '/user/*', }, ], },