From a37bb6ade129acf0c18aef93a535cad555041f5e Mon Sep 17 00:00:00 2001 From: Tim Donohue Date: Thu, 6 Feb 2025 15:21:08 -0600 Subject: [PATCH] Move performanceprofiler option to last in list --- config/config.example.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config/config.example.yml b/config/config.example.yml index 89f9bd283b..5fa2e74cbb 100644 --- a/config/config.example.yml +++ b/config/config.example.yml @@ -19,9 +19,6 @@ ui: # Angular Server Side Rendering (SSR) settings ssr: - # Enable request performance profiling data collection and printing the results in the server console. - # Defaults to false. Enabling in production is NOT recommended - enablePerformanceProfiler: false # Whether to tell Angular to inline "critical" styles into the server-side rendered HTML. # Determining which styles are critical is a relatively expensive operation; this option is # disabled (false) by default to boost server performance at the expense of loading smoothness. @@ -48,6 +45,9 @@ ssr: # REST resources with the internal URL configured. By default, these internal URLs are replaced with public URLs. # Disable this setting to avoid URL replacement during SSR. In this the state is not transferred to avoid security issues. replaceRestUrl: true + # Enable request performance profiling data collection and printing the results in the server console. + # Defaults to false. Enabling in production is NOT recommended + #enablePerformanceProfiler: false # The REST API server settings # NOTE: these settings define which (publicly available) REST API to use. They are usually