|
23 | 23 | # Determining which styles are critical is a relatively expensive operation; this option is |
24 | 24 | # disabled (false) by default to boost server performance at the expense of loading smoothness. |
25 | 25 | inlineCriticalCss: false |
| 26 | + # Path prefixes to enable SSR for. By default these are limited to paths of primary DSpace objects. |
| 27 | + paths: [ '/home', '/items/', '/entities/', '/collections/', '/communities/', '/bitstream/', '/bitstreams/', '/handle/' ] |
| 28 | + # Whether to enable rendering of Search component on SSR. |
| 29 | + # If set to true the component will be included in the HTML returned from the server side rendering. |
| 30 | + # If set to false the component will not be included in the HTML returned from the server side rendering. |
| 31 | + enableSearchComponent: false, |
| 32 | + # Whether to enable rendering of Browse component on SSR. |
| 33 | + # If set to true the component will be included in the HTML returned from the server side rendering. |
| 34 | + # If set to false the component will not be included in the HTML returned from the server side rendering. |
| 35 | + enableBrowseComponent: false, |
26 | 36 |
|
27 | 37 | # The REST API server settings |
28 | 38 | # NOTE: these settings define which (publicly available) REST API to use. They are usually |
@@ -448,6 +458,12 @@ search: |
448 | 458 | enabled: false |
449 | 459 | # List of filters to enable in "Advanced Search" dropdown |
450 | 460 | filter: [ 'title', 'author', 'subject', 'entityType' ] |
| 461 | + # |
| 462 | + # Number used to render n UI elements called loading skeletons that act as placeholders. |
| 463 | + # These elements indicate that some content will be loaded in their stead. |
| 464 | + # Since we don't know how many filters will be loaded before we receive a response from the server we use this parameter for the skeletons count. |
| 465 | + # e.g. If we set 5 then 5 loading skeletons will be visualized before the actual filters are retrieved. |
| 466 | + defaultFiltersCount: 5 |
451 | 467 |
|
452 | 468 |
|
453 | 469 | # Notify metrics |
|
0 commit comments