@@ -52,6 +52,7 @@ class Configuration
5252 :generated_assets_dirs , :generated_assets_dir , :components_subdirectory ,
5353 :webpack_generated_files , :rendering_extension , :build_test_command ,
5454 :build_production_command , :i18n_dir , :i18n_yml_dir , :i18n_output_format ,
55+ :i18n_yml_safe_load_options ,
5556 :server_render_method , :random_dom_id , :auto_load_bundle ,
5657 :same_bundle_for_client_and_server , :rendering_props_extension ,
5758 :make_generated_server_bundle_the_entrypoint ,
@@ -69,7 +70,7 @@ def initialize(node_modules_location: nil, server_bundle_js_file: nil, prerender
6970 rendering_extension : nil , build_test_command : nil ,
7071 build_production_command : nil , defer_generated_component_packs : nil ,
7172 same_bundle_for_client_and_server : nil ,
72- i18n_dir : nil , i18n_yml_dir : nil , i18n_output_format : nil ,
73+ i18n_dir : nil , i18n_yml_dir : nil , i18n_output_format : nil , i18n_yml_safe_load_options : nil ,
7374 random_dom_id : nil , server_render_method : nil , rendering_props_extension : nil ,
7475 components_subdirectory : nil , auto_load_bundle : nil , force_load : nil )
7576 self . node_modules_location = node_modules_location . present? ? node_modules_location : Rails . root
@@ -80,6 +81,7 @@ def initialize(node_modules_location: nil, server_bundle_js_file: nil, prerender
8081 self . i18n_dir = i18n_dir
8182 self . i18n_yml_dir = i18n_yml_dir
8283 self . i18n_output_format = i18n_output_format
84+ self . i18n_yml_safe_load_options = i18n_yml_safe_load_options
8385
8486 self . random_dom_id = random_dom_id
8587 self . prerender = prerender
0 commit comments