mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-08 10:34:15 +00:00
[DURACOM-247] Refactoring SSR configuration in order to align it with new nomenclature
This commit is contained in:
21
src/config/ssr-config.interface.ts
Normal file
21
src/config/ssr-config.interface.ts
Normal file
@@ -0,0 +1,21 @@
|
||||
import { Config } from './config.interface';
|
||||
|
||||
export interface SSRConfig extends Config {
|
||||
/**
|
||||
* A boolean flag indicating whether the SSR configuration is enabled
|
||||
* Defaults to true.
|
||||
*/
|
||||
enabled: boolean;
|
||||
|
||||
/**
|
||||
* Enable request performance profiling data collection and printing the results in the server console.
|
||||
* Defaults to false.
|
||||
*/
|
||||
enablePerformanceProfiler: boolean;
|
||||
|
||||
/**
|
||||
* Reduce render blocking requests by inlining critical CSS.
|
||||
* Defaults to true.
|
||||
*/
|
||||
inlineCriticalCss: boolean;
|
||||
}
|
Reference in New Issue
Block a user