mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-29 16:14:42 +00:00
* react-app-env.d.ts is moved to the typings * webpack config for development and production is updated * extra browser router component is removed * loable component is made * spinner component is updated * route are updated * routes are imported is Loadable fashion with chunkName * AppRoute is updated * AppWrapper is changed to AppRouter * merge conflits are resolved * Loadable component is updated Co-authored-by: Ankit Nayan <ankit@signoz.io>
62 lines
1.3 KiB
TypeScript
62 lines
1.3 KiB
TypeScript
import Loadable from "./components/Loadable";
|
|
|
|
export const ServiceMetricsPage = Loadable(
|
|
() =>
|
|
import(
|
|
/* webpackChunkName: "ServiceMetricsPage" */ "modules/Metrics/ServiceMetricsDef"
|
|
),
|
|
);
|
|
|
|
export const ServiceMapPage = Loadable(
|
|
() =>
|
|
import(
|
|
/* webpackChunkName: "ServiceMapPage" */ "modules/Servicemap/ServiceMap"
|
|
),
|
|
);
|
|
|
|
export const TraceDetailPage = Loadable(
|
|
() =>
|
|
import(
|
|
/* webpackChunkName: "TraceDetailPage" */ "modules/Traces/TraceDetail"
|
|
),
|
|
);
|
|
|
|
export const TraceGraphPage = Loadable(
|
|
() =>
|
|
import(
|
|
/* webpackChunkName: "TraceGraphPage" */ "modules/Traces/TraceGraphDef"
|
|
),
|
|
);
|
|
|
|
export const UsageExplorerPage = Loadable(
|
|
() =>
|
|
import(
|
|
/* webpackChunkName: "UsageExplorerPage" */ "modules/Usage/UsageExplorerDef"
|
|
),
|
|
);
|
|
|
|
export const ServicesTablePage = Loadable(
|
|
() =>
|
|
import(
|
|
/* webpackChunkName: "ServicesTablePage" */ "modules/Metrics/ServicesTableDef"
|
|
),
|
|
);
|
|
|
|
export const SignupPage = Loadable(
|
|
() => import(/* webpackChunkName: "SignupPage" */ "modules/Auth/Signup"),
|
|
);
|
|
|
|
export const SettingsPage = Loadable(
|
|
() =>
|
|
import(
|
|
/* webpackChunkName: "SettingsPage" */ "modules/Settings/settingsPage"
|
|
),
|
|
);
|
|
|
|
export const InstrumentationPage = Loadable(
|
|
() =>
|
|
import(
|
|
/* webpackChunkName: "InstrumentationPage" */ "modules/add-instrumentation/instrumentationPage"
|
|
),
|
|
);
|