diff options
author | Abdelkader Boudih <terminale@gmail.com> | 2014-11-05 07:01:39 +0000 |
---|---|---|
committer | Abdelkader Boudih <terminale@gmail.com> | 2014-11-05 07:01:39 +0000 |
commit | a9d199016969d42a4cea44a7b44d4a0724100788 (patch) | |
tree | 098f1772fd57c91643c3d94a11ab1b57bb2761d9 /guides/source | |
parent | bb441843a76c14285694588b9b36d32ff59c0d48 (diff) | |
parent | d027e2759d1aa5235d562bc1063d3f957473c763 (diff) | |
download | rails-a9d199016969d42a4cea44a7b44d4a0724100788.tar.gz rails-a9d199016969d42a4cea44a7b44d4a0724100788.tar.bz2 rails-a9d199016969d42a4cea44a7b44d4a0724100788.zip |
Merge pull request #17514 from y-yagi/configuring_guide
[ci skip] fix `config.assets.digest` default value
Diffstat (limited to 'guides/source')
-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 58c3f217eb..2957232186 100644 --- a/guides/source/configuring.md +++ b/guides/source/configuring.md @@ -153,7 +153,7 @@ pipeline is enabled. It is set to true by default. * `config.assets.manifest` defines the full path to be used for the asset precompiler's manifest file. Defaults to a file named `manifest-<random>.json` in the `config.assets.prefix` directory within the public folder. -* `config.assets.digest` enables the use of MD5 fingerprints in asset names. Set to `true` by default in `production.rb`. +* `config.assets.digest` enables the use of MD5 fingerprints in asset names. Set to `true` by default in `production.rb` and `development.rb`. * `config.assets.debug` disables the concatenation and compression of assets. Set to `true` by default in `development.rb`. |