diff options
author | Ryuta Kamizono <kamipo@gmail.com> | 2018-06-05 02:52:17 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-05 02:52:17 +0900 |
commit | 187ace068bba7c63c46ee869ac6cc35716f1b7ab (patch) | |
tree | 56881856c5b6234d553f570e20b92f6c62094971 /guides | |
parent | c256d02f010228d260b408e8b7fda0a4bcb33f39 (diff) | |
parent | 6813b480a10aa228807c6c63cf5256e40b6cda23 (diff) | |
download | rails-187ace068bba7c63c46ee869ac6cc35716f1b7ab.tar.gz rails-187ace068bba7c63c46ee869ac6cc35716f1b7ab.tar.bz2 rails-187ace068bba7c63c46ee869ac6cc35716f1b7ab.zip |
Merge pull request #33053 from lazyatom/patch-3
Correct default value of `unknown_asset_fallback`
[ci skip]
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/configuring.md | 2 |
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`. |