2020-11-03 04:52:41 +00:00
|
|
|
import { lazy } from 'react';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Custom features should be registered here as lazy components so that they do
|
|
|
|
* not impact the generated JS bundle size. They will be automatically loaded in
|
|
|
|
* whenever they are actually loaded for the client (which may be never, depending
|
|
|
|
* on the feature and the egg).
|
|
|
|
*/
|
2021-07-09 18:58:06 +00:00
|
|
|
const EulaModalFeature = lazy(() => import(/* webpackChunkName: "feature.eula" */'feature/eula/EulaModalFeature'));
|
2022-01-08 22:20:23 +00:00
|
|
|
const JavaVersionModalFeature = lazy(() => import(/* webpackChunkName: "feature.java_version" */'feature/JavaVersionModalFeature'));
|
|
|
|
const GSLTokenModalFeature = lazy(() => import(/* webpackChunkName: "feature.gsl_token" */'feature/GSLTokenModalFeature'));
|
2022-01-18 03:30:46 +00:00
|
|
|
const PIDLimitModalFeature = lazy(() => import(/* webpackChunkName: "feature.pid_limit" */'feature/PIDLimitModalFeature'));
|
2020-11-03 04:52:41 +00:00
|
|
|
|
2022-01-18 03:02:10 +00:00
|
|
|
export { EulaModalFeature, JavaVersionModalFeature, GSLTokenModalFeature, PIDLimitModalFeature };
|