From f2f427bbe802ad891da22dd1808218397a7945d9 Mon Sep 17 00:00:00 2001 From: WangDL Date: Fri, 22 May 2026 22:37:45 +0800 Subject: [PATCH] fix: add ConfigPage lazy import --- src/App.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/App.tsx b/src/App.tsx index 8030d7c..78bf746 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -13,6 +13,7 @@ const Login = lazy(() => import('./pages/Login')) const KnowledgeBasesPage = lazy(() => import('./pages/KnowledgeBases')) const BillingPage = lazy(() => import('./pages/Billing')) const GiteaEmbed = lazy(() => import('./pages/GiteaEmbed')) +const ConfigPage = lazy(() => import("./pages/Config")) const EventsPage = lazy(() => import("./pages/Events")) const ServersPage = lazy(() => import("./pages/Servers")) const AuditLogPage = lazy(() => import("./pages/AuditLog"))