Browse Source

Fix blank page error after `npm start` (#11157)

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/11382/head
Yubao Liu 2 years ago
committed by GitHub
parent
commit
ed1ba7814f
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', component: '404',
path: '/*', path: '/user/*',
}, },
], ],
}, },

Loading…
Cancel
Save