diff options
author | schneems <richard.schneeman@gmail.com> | 2016-08-29 12:42:20 -0500 |
---|---|---|
committer | schneems <richard.schneeman@gmail.com> | 2016-08-29 13:16:07 -0500 |
commit | e1791d1dd4820157654e59d2e9315b4975e3c36a (patch) | |
tree | 38af6b09f62cbc869b4b96a40f17a3c96ceb6e3b /guides | |
parent | 981ac09332b8c5210408bbc2f5fa4a99fead6a26 (diff) | |
download | rails-e1791d1dd4820157654e59d2e9315b4975e3c36a.tar.gz rails-e1791d1dd4820157654e59d2e9315b4975e3c36a.tar.bz2 rails-e1791d1dd4820157654e59d2e9315b4975e3c36a.zip |
Explicitly mention defaults.
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/asset_pipeline.md | 2 | ||||
-rw-r--r-- | guides/source/configuring.md | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/asset_pipeline.md b/guides/source/asset_pipeline.md index c3ceb9c790..41dfeea84d 100644 --- a/guides/source/asset_pipeline.md +++ b/guides/source/asset_pipeline.md @@ -597,7 +597,7 @@ config.assets.unknown_asset_fallback = false ``` If "asset fallback" is enabled then when an asset cannot be found the path will be -output instead and no error raised. +output instead and no error raised. The asset fallback behavior is enabled by default. ### Turning Digests Off diff --git a/guides/source/configuring.md b/guides/source/configuring.md index 283aae8178..a115683134 100644 --- a/guides/source/configuring.md +++ b/guides/source/configuring.md @@ -169,7 +169,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. +* `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.prefix` defines the prefix where assets are served from. Defaults to `/assets`. |