From a1c8d5908e4a124da7b868f9f9139cd9eb5ce7b8 Mon Sep 17 00:00:00 2001 From: sy296565890 <85245446+sy296565890@users.noreply.github.com> Date: Wed, 27 Mar 2024 14:09:36 +0800 Subject: [PATCH] Update routes.ts (#11168) 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/*', }, ], },