Skip to content

Commit

Permalink
feat: webpack chunk name is updated (SigNoz#1562)
Browse files Browse the repository at this point in the history
  • Loading branch information
palashgdev authored Sep 13, 2022
1 parent c43dabd commit 0806397
Show file tree
Hide file tree
Showing 9 changed files with 4 additions and 7 deletions.
7 changes: 2 additions & 5 deletions frontend/src/AppRoutes/pageComponents.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,8 @@ export const SettingsPage = Loadable(
() => import(/* webpackChunkName: "SettingsPage" */ 'pages/Settings'),
);

export const InstrumentationPage = Loadable(
() =>
import(
/* webpackChunkName: "InstrumentationPage" */ 'pages/AddInstrumentation'
),
export const GettingStarted = Loadable(
() => import(/* webpackChunkName: "GettingStarted" */ 'pages/GettingStarted'),
);

export const DashboardPage = Loadable(
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/AppRoutes/routes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import {
EditAlertChannelsAlerts,
EditRulesPage,
ErrorDetails,
InstrumentationPage,
GettingStarted,
ListAllALertsPage,
Login,
Logs,
Expand Down Expand Up @@ -85,7 +85,7 @@ const routes: AppRoutes[] = [
{
path: ROUTES.INSTRUMENTATION,
exact: true,
component: InstrumentationPage,
component: GettingStarted,
isPrivate: true,
key: 'INSTRUMENTATION',
},
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 0806397

Please sign in to comment.