Skip to content

Commit 7b9f1dc

Browse files
tdonohuegithub-actions[bot]
authored andcommitted
Fix incorrect example. The setting category is called "ssr" and not "universal"
(cherry picked from commit 138c007)
1 parent 3a18805 commit 7b9f1dc

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

config/config.example.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# NOTE: will log all redux actions and transfers in console
22
debug: false
33

4-
# Angular Universal server settings
4+
# Angular User Inteface settings
55
# NOTE: these settings define where Node.js will start your UI application. Therefore, these
66
# "ui" settings usually specify a localhost port/URL which is later proxied to a public URL (using Apache or similar)
77
ui:
@@ -17,12 +17,12 @@ ui:
1717
# Trust X-FORWARDED-* headers from proxies (default = true)
1818
useProxies: true
1919

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
2626

2727
# The REST API server settings
2828
# NOTE: these settings define which (publicly available) REST API to use. They are usually

0 commit comments

Comments
 (0)