Commits
Tim Donohue authored ee174747c2c
7 7 | */ |
8 8 | enabled: boolean; |
9 9 | |
10 10 | /** |
11 11 | * Enable request performance profiling data collection and printing the results in the server console. |
12 12 | * Defaults to false. |
13 13 | */ |
14 14 | enablePerformanceProfiler: boolean; |
15 15 | |
16 16 | /** |
17 - | * Reduce render blocking requests by inlining critical CSS. |
18 - | * Defaults to true. |
17 + | * When set to true, reduce render blocking requests by inlining critical CSS. |
18 + | * Determining which styles are critical can be an expensive operation; |
19 + | * this option can be disabled to boost server performance at the expense of loading smoothness. |
20 + | * For improved SSR performance, DSpace defaults this to false (disabled). |
19 21 | */ |
20 22 | inlineCriticalCss: boolean; |
21 23 | } |