-
Notifications
You must be signed in to change notification settings - Fork 613
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
15 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
// export * as Dashboard from '~/routes/src/dashboard/dashboard-main' | ||
// export * as Dashboard from './dashboard-main' | ||
|
||
// we export it lazy because of ~2.6 MB chunk size :) plotly.js is too big :3 | ||
const lazy = () => import('~/routes/src/dashboard/dashboard-main') | ||
const lazy = () => import('./dashboard-main') | ||
export const DashboardLazy = { lazy } as const |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
export * as Home from '~/routes/src/home/home-main' | ||
export * as Home from './home-main' | ||
|
||
// const lazy = () => import('~/routes/src/home/home-main') | ||
// const lazy = () => import('./home-main') | ||
// export const Home = { lazy } as const |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
export * as Project from '~/routes/src/project/project-main' | ||
export * as Project from './project-main' | ||
|
||
// const lazy = () => import('~/routes/src/project/project-main') | ||
// const lazy = () => import('./project-main') | ||
// export const Project = { lazy } as const |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
export * as ProjectsList from '~/routes/src/projects-list/projects-list-main' | ||
export * as ProjectsList from './projects-list-main' | ||
|
||
// const lazy = () => import('~/routes/src/projects-list/projects-list-main') | ||
// const lazy = () => import('./projects-list-main') | ||
// export const ProjectsList = { lazy } as const |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
export * as ReportsLayout from '~/routes/src/reports-layout/reports-layout-main' | ||
export * as ReportsLayout from './reports-layout-main' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
export * as ReportsList from '~/routes/src/reports-list/reports-list-main' | ||
export * as ReportsList from './reports-list-main' | ||
|
||
// const lazy = () => import('~/routes/src/projects-list/projects-list-main') | ||
// const lazy = () => import('./reports-list-main') | ||
// export const Reports = { lazy } as const |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
// export * as SnapshotId from '~/routes/src/snapshot-view/snapshot-view-main' | ||
|
||
// we export it lazy because of ~2.6 MB chunk size :) plotly.js is too big :3 | ||
const lazy = () => import('~/routes/src/snapshot-view/snapshot-view-main') | ||
const lazy = () => import('./snapshot-view-main') | ||
export const SnapshotIdLazy = { lazy } as const |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
export * as TestSuitesLayout from '~/routes/src/test-suites-layout/test-suites-layout-main' | ||
export * as TestSuitesLayout from './test-suites-layout-main' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
export * as TestSuitesList from '~/routes/src/test-suites-list/test-suites-list-main' | ||
export * as TestSuitesList from './test-suites-list-main' | ||
|
||
// const lazy = () => import('~/routes/src/projects-list/projects-list-main') | ||
// const lazy = () => import('./projects-list-main') | ||
// export const Reports = { lazy } as const |