You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Integrate a new feature called "blacklisting" which allows you to explicitly specify routes that you wish to render inside the Route declaration itself ({server: true})
.option('-a, --application <applicationID>','Optional application ID if your CLI configuration contains multiple apps')
125
131
.option('-P, --preboot [boolean | json-file | json-text]','Enable or disable preboot with optional configuration file or JSON text (otherwise automatically find the root element and use defaults)')
126
132
.option('-i, --inline [boolean]','Inline of resources referenced in links')
127
-
.option('-I, --ipc','Send rendered documents to parent process through IPC instead of writing them to disk',false);
133
+
.option('-I, --ipc','Send rendered documents to parent process through IPC instead of writing them to disk',false)
134
+
.option('-b, --blacklist [boolean]','Blacklist all routes by default such that all routes which should be rendered must be specially marked with "server: true" in the route definition',false)
0 commit comments