aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorJames Adam <james@lazyatom.com>2018-06-04 17:49:47 +0100
committerGitHub <noreply@github.com>2018-06-04 17:49:47 +0100
commit6813b480a10aa228807c6c63cf5256e40b6cda23 (patch)
tree56881856c5b6234d553f570e20b92f6c62094971 /guides
parentc256d02f010228d260b408e8b7fda0a4bcb33f39 (diff)
downloadrails-6813b480a10aa228807c6c63cf5256e40b6cda23.tar.gz
rails-6813b480a10aa228807c6c63cf5256e40b6cda23.tar.bz2
rails-6813b480a10aa228807c6c63cf5256e40b6cda23.zip
Correct default value of `unknown_asset_fallback`
`Rails.application.config.assets.unknown_asset_fallback` now defaults to `false` in an unmodified Rails application. [ci skip]
Diffstat (limited to 'guides')
-rw-r--r--guides/source/configuring.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/configuring.md b/guides/source/configuring.md
index d4aa6546a7..4d8883a7bd 100644
--- a/guides/source/configuring.md
+++ b/guides/source/configuring.md
@@ -165,7 +165,7 @@ pipeline is enabled. It is set to `true` by default.
* `config.assets.precompile` allows you to specify additional assets (other than `application.css` and `application.js`) which are to be precompiled when `rake assets:precompile` is run.
-* `config.assets.unknown_asset_fallback` allows you to modify the behavior of the asset pipeline when an asset is not in the pipeline, if you use sprockets-rails 3.2.0 or newer. Defaults to `true`.
+* `config.assets.unknown_asset_fallback` allows you to modify the behavior of the asset pipeline when an asset is not in the pipeline, if you use sprockets-rails 3.2.0 or newer. Defaults to `false`.
* `config.assets.prefix` defines the prefix where assets are served from. Defaults to `/assets`.