mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-17 23:13:04 +00:00
20 lines
719 B
TypeScript
20 lines
719 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { EagerThemeModule as DSpaceEagerThemeModule } from './dspace/eager-theme.module';
|
|
// import { EagerThemeModule as CustomEagerThemeModule } from './custom/eager-theme.module';
|
|
|
|
/**
|
|
* This module bundles the eager theme modules for all available themes.
|
|
* Eager modules contain components that are present on every page (to speed up initial loading)
|
|
* and entry components (to ensure their decorators get picked up).
|
|
*
|
|
* Themes that aren't in use should not be imported here so they don't take up unnecessary space in the main bundle.
|
|
*/
|
|
@NgModule({
|
|
imports: [
|
|
DSpaceEagerThemeModule,
|
|
// CustomEagerThemeModule,
|
|
],
|
|
})
|
|
export class EagerThemesModule {
|
|
}
|