Browse Source

Fix blank page error after `npm start`

Fixed 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.
pull/11157/head
Yubao Liu 2 years ago
committed by GitHub
parent
commit
6b95a151f0
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      config/routes.ts

2
config/routes.ts

@ -39,7 +39,7 @@ export default [
},
{
component: '404',
path: '/*',
path: '/user/*',
},
],
},

Loading…
Cancel
Save