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 19:58:06 +01: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'));
|
2020-11-03 04:52:41 +00:00
|
|
|
|
2021-12-04 18:29:24 +00:00
|
|
|
export { EulaModalFeature, JavaVersionModalFeature, GSLTokenModalFeature };
|