mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-09-07 01:09:54 +08:00
feat: add no match route (#3659)
This commit is contained in:
@@ -28,6 +28,10 @@ export const router = createBrowserRouter(
|
|||||||
path: '/404',
|
path: '/404',
|
||||||
lazy: () => import('./pages/404'),
|
lazy: () => import('./pages/404'),
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
path: '*',
|
||||||
|
lazy: () => import('./pages/404'),
|
||||||
|
},
|
||||||
],
|
],
|
||||||
{
|
{
|
||||||
future: {
|
future: {
|
||||||
|
|||||||
Reference in New Issue
Block a user