mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 10:04:11 +00:00
17 lines
463 B
TypeScript
17 lines
463 B
TypeScript
import { Config } from './config.interface';
|
|
|
|
export interface UniversalConfig extends Config {
|
|
preboot: boolean;
|
|
async: boolean;
|
|
time: boolean;
|
|
|
|
/**
|
|
* Whether to inline "critical" styles into the server-side rendered HTML.
|
|
*
|
|
* Determining which styles are critical is a relatively expensive operation;
|
|
* this option can be disabled to boost server performance at the expense of
|
|
* loading smoothness.
|
|
*/
|
|
inlineCriticalCss?: boolean;
|
|
}
|