diff --git a/packages/console/src/App.tsx b/packages/console/src/App.tsx index b78baf1cc..bf853d4a7 100644 --- a/packages/console/src/App.tsx +++ b/packages/console/src/App.tsx @@ -1,7 +1,7 @@ import { LogtoProvider } from '@logto/react'; import { adminConsoleApplicationId, managementResource } from '@logto/schemas/lib/seeds'; import { getBasename } from '@logto/shared'; -import React, { Suspense } from 'react'; +import React from 'react'; import { BrowserRouter, Navigate, Route, Routes } from 'react-router-dom'; import { SWRConfig } from 'swr'; @@ -9,29 +9,27 @@ import './scss/normalized.scss'; // eslint-disable-next-line import/no-unassigned-import import '@fontsource/roboto-mono'; import AppBoundary from '@/components/AppBoundary'; -import AppLoading from '@/components/AppLoading'; +import AppContent from '@/components/AppContent'; import ErrorBoundary from '@/components/ErrorBoundary'; import Toast from '@/components/Toast'; import useSwrOptions from '@/hooks/use-swr-options'; import initI18n from '@/i18n/init'; - -const AppContent = React.lazy(async () => import('@/components/AppContent')); -const ApiResourceDetails = React.lazy(async () => import('@/pages/ApiResourceDetails')); -const ApiResources = React.lazy(async () => import('@/pages/ApiResources')); -const ApplicationDetails = React.lazy(async () => import('@/pages/ApplicationDetails')); -const Applications = React.lazy(async () => import('@/pages/Applications')); -const AuditLogs = React.lazy(async () => import('@/pages/AuditLogs')); -const AuditLogDetails = React.lazy(async () => import('@/pages/AuditLogDetails')); -const Callback = React.lazy(async () => import('@/pages/Callback')); -const ConnectorDetails = React.lazy(async () => import('@/pages/ConnectorDetails')); -const Connectors = React.lazy(async () => import('@/pages/Connectors')); -const Dashboard = React.lazy(async () => import('@/pages/Dashboard')); -const GetStarted = React.lazy(async () => import('@/pages/GetStarted')); -const NotFound = React.lazy(async () => import('@/pages/NotFound')); -const Settings = React.lazy(async () => import('@/pages/Settings')); -const SignInExperience = React.lazy(async () => import('@/pages/SignInExperience')); -const UserDetails = React.lazy(async () => import('@/pages/UserDetails')); -const Users = React.lazy(async () => import('@/pages/Users')); +import ApiResourceDetails from '@/pages/ApiResourceDetails'; +import ApiResources from '@/pages/ApiResources'; +import ApplicationDetails from '@/pages/ApplicationDetails'; +import Applications from '@/pages/Applications'; +import AuditLogDetails from '@/pages/AuditLogDetails'; +import AuditLogs from '@/pages/AuditLogs'; +import Callback from '@/pages/Callback'; +import ConnectorDetails from '@/pages/ConnectorDetails'; +import Connectors from '@/pages/Connectors'; +import Dashboard from '@/pages/Dashboard'; +import GetStarted from '@/pages/GetStarted'; +import NotFound from '@/pages/NotFound'; +import Settings from '@/pages/Settings'; +import SignInExperience from '@/pages/SignInExperience'; +import UserDetails from '@/pages/UserDetails'; +import Users from '@/pages/Users'; void initI18n(); @@ -43,49 +41,47 @@ const Main = () => { - }> - - } /> - {/* TODO: add register route */} - register} /> - }> - } /> - } /> - - } /> - - } /> - } /> - } /> - + + } /> + {/* TODO: add register route */} + register} /> + }> + } /> + } /> + + } /> + + } /> + } /> + } /> - - } /> - } /> - - - } /> - } /> - } /> - - - } /> - } /> - } /> - - - } /> - } /> - - } /> - - } /> - } /> - - } /> - - + + } /> + } /> + + + } /> + } /> + } /> + + + } /> + } /> + } /> + + + } /> + } /> + + } /> + + } /> + } /> + + } /> + +