|
1 | 1 | # NOTE: will log all redux actions and transfers in console |
2 | 2 | debug: false |
3 | 3 |
|
4 | | -# Angular Universal server settings |
| 4 | +# Angular User Inteface settings |
5 | 5 | # NOTE: these settings define where Node.js will start your UI application. Therefore, these |
6 | 6 | # "ui" settings usually specify a localhost port/URL which is later proxied to a public URL (using Apache or similar) |
7 | 7 | ui: |
|
17 | 17 | # Trust X-FORWARDED-* headers from proxies (default = true) |
18 | 18 | useProxies: true |
19 | 19 |
|
20 | | -universal: |
21 | | - # Whether to inline "critical" styles into the server-side rendered HTML. |
22 | | - # Determining which styles are critical is a relatively expensive operation; |
23 | | - # this option can be disabled to boost server performance at the expense of |
24 | | - # loading smoothness. |
25 | | - inlineCriticalCss: true |
| 20 | +# Angular Server Side Rendering (SSR) settings |
| 21 | +ssr: |
| 22 | + # Whether to tell Angular to inline "critical" styles into the server-side rendered HTML. |
| 23 | + # Determining which styles are critical is a relatively expensive operation; this option is |
| 24 | + # disabled (false) by default to boost server performance at the expense of loading smoothness. |
| 25 | + inlineCriticalCss: false |
26 | 26 |
|
27 | 27 | # The REST API server settings |
28 | 28 | # NOTE: these settings define which (publicly available) REST API to use. They are usually |
@@ -503,6 +503,16 @@ notifyMetrics: |
503 | 503 | description: 'admin-notify-dashboard.NOTIFY.outgoing.delivered.description' |
504 | 504 |
|
505 | 505 |
|
506 | | - |
507 | | - |
508 | | - |
| 506 | +# Live Region configuration |
| 507 | +# Live Region as defined by w3c, https://www.w3.org/TR/wai-aria-1.1/#terms: |
| 508 | +# Live regions are perceivable regions of a web page that are typically updated as a |
| 509 | +# result of an external event when user focus may be elsewhere. |
| 510 | +# |
| 511 | +# The DSpace live region is a component present at the bottom of all pages that is invisible by default, but is useful |
| 512 | +# for screen readers. Any message pushed to the live region will be announced by the screen reader. These messages |
| 513 | +# usually contain information about changes on the page that might not be in focus. |
| 514 | +liveRegion: |
| 515 | + # The duration after which messages disappear from the live region in milliseconds |
| 516 | + messageTimeOutDurationMs: 30000 |
| 517 | + # The visibility of the live region. Setting this to true is only useful for debugging purposes. |
| 518 | + isVisible: false |
0 commit comments