mandatory fields are marked with *
bigpipe:rendered_output_path: null # * Where to output processed files, this should point to the public directly so files maystatic_uri: null # * django static dir, needed when processing files a linksis_production_mode: null # * true/false. to minify outputrendered_output_container: component_cache # inside the public folder where to store rendered filesjava_script_install_folder: null # absolute path points to node directory. "<temp_folder>/bigpipe_response" isused by defaultremote: # node js remote serverport_start: 7480 # port number to start scanning for available portport_count: 10 # ho many port to scan (remote.port_start + remote.port_count)extra_node_packages: [] # install extra node modules. needed when writing pluginsjavascript: # javascript configurationdefault_processor: jsx # default javascript processor is named "jsx"bundle_link_dependencies: true # true/false determining if js_dependencies should by bundled or notdom_bind: bigpipe_response.javascript_dom_bind.react_dom_bind.ReactDomBind # what "JavascriptDOMBind" should we pay to connect generated Javascript with the DOMcss: # css configurationdefault_processor: cssbundle_link_dependencies: truecomplete_dependencies_by_js: true # true/false. automatically find scss files by the precessed javascript filesi18n: # i18n configurationdefault_processor: i18n# bigpipe dynamically create and configure processors from this configuration# the instances are created using hydra "https://hydra.cc/docs/patterns/objects"processors:jsx:# create "RemoteJsFileProcessor" named "jsx". and pass the params to the constructor# will pay this javascript file "bigpipe_response.processors.RollupReactProcessor.js"# will scan for files with the "source_ext" under the "source_paths"# and will convert any resource to the "target_ext" extension.class: bigpipe_response.processors.remote_js_file_processor.RemoteJsFileProcessorparams:processor_name: jsxjavascript_handler: bigpipe_response.processors.RollupReactProcessor.jssource_paths: null # * list of directories pointing to javascript/react code.source_ext:- js- jsxtarget_ext: jsexclude_dir: node_modules# create "RemoteJsProcessor" named "js_modules". and pass the params to the constructor# will pay this javascript file "bigpipe_response.processors.WebpackModuleProcessor.js"js_modules:class: bigpipe_response.processors.remote_js_processor.RemoteJsProcessorparams:processor_name: js_modulesjavascript_handler: bigpipe_response.processors.WebpackModuleProcessor.jstarget_ext: js# create "CSSProcessor" named "css". and pass the params to the constructorcss:class: bigpipe_response.processors.css_processor.CSSProcessorparams:processor_name: csssource_paths: nonesource_ext:- scsstarget_ext: css# create "I18nProcessor" named "i18n". and pass the params to the constructori18n:class: bigpipe_response.processors.i18n_processor.I18nProcessorparams:processor_name: i18n