64 lines
3.3 KiB
Ruby
64 lines
3.3 KiB
Ruby
# typed: strict
|
|
# frozen_string_literal: true
|
|
|
|
# See https://github.com/shakacode/react_on_rails/blob/master/docs/guides/configuration.md
|
|
# for many more options.
|
|
|
|
ReactOnRails.configure do |config|
|
|
in_dev_mode = Rails.env.development? || Rails.env.staging?
|
|
config.development_mode = in_dev_mode
|
|
config.trace = in_dev_mode
|
|
|
|
# This configures the script to run to build the production assets by webpack. Set this to nil
|
|
# if you don't want react_on_rails building this file for you.
|
|
# If nil, then the standard shakacode/shakapacker assets:precompile will run
|
|
# config.build_production_command = nil
|
|
|
|
################################################################################
|
|
################################################################################
|
|
# TEST CONFIGURATION OPTIONS
|
|
# Below options are used with the use of this test helper:
|
|
# ReactOnRails::TestHelper.configure_rspec_to_compile_assets(config)
|
|
################################################################################
|
|
|
|
# If you are using this in your spec_helper.rb (or rails_helper.rb):
|
|
#
|
|
# ReactOnRails::TestHelper.configure_rspec_to_compile_assets(config)
|
|
#
|
|
# with rspec then this controls what yarn command is run
|
|
# to automatically refresh your webpack assets on every test run.
|
|
#
|
|
# Alternately, you can remove the `ReactOnRails::TestHelper.configure_rspec_to_compile_assets`
|
|
# and set the config/webpacker.yml option for test to true.
|
|
config.build_test_command = "RAILS_ENV=test bin/webpacker"
|
|
|
|
################################################################################
|
|
################################################################################
|
|
# SERVER RENDERING OPTIONS
|
|
################################################################################
|
|
# This is the file used for server rendering of React when using `(prerender: true)`
|
|
# If you are never using server rendering, you should set this to "".
|
|
# Note, there is only one server bundle, unlike JavaScript where you want to minimize the size
|
|
# of the JS sent to the client. For the server rendering, React on Rails creates a pool of
|
|
# JavaScript execution instances which should handle any component requested.
|
|
#
|
|
# While you may configure this to be the same as your client bundle file, this file is typically
|
|
# different. You should have ONE server bundle which can create all of your server rendered
|
|
# React components.
|
|
#
|
|
config.server_bundle_js_file = "server-bundle.js"
|
|
|
|
################################################################################
|
|
################################################################################
|
|
# FILE SYSTEM BASED COMPONENT REGISTRY
|
|
################################################################################
|
|
# `components_subdirectory` is the name of the matching directories that contain automatically registered components
|
|
# for use in the Rails views. The default is nil, you can enable the feature by updating it in the next line.
|
|
# config.components_subdirectory = "ror_components"
|
|
#
|
|
# For automated component registry, `render_component` view helper method tries to load bundle for component from
|
|
# generated directory. default is false, you can pass option at the time of individual usage or update the default
|
|
# in the following line
|
|
config.auto_load_bundle = false
|
|
end
|