diff options
author | Johnny Shields <johnny.shields@gmail.com> | 2014-08-03 06:51:58 +0900 |
---|---|---|
committer | Johnny Shields <johnny.shields@gmail.com> | 2014-08-05 05:02:59 +0900 |
commit | edfc7b96a12fa4422071b61f55da5a7a238b78b2 (patch) | |
tree | 715dc8f99cd74f19f3811029623fcba62b15e3b8 | |
parent | dc1a6614dca69a8ec7a368c5a0d7bc32660c1c1d (diff) | |
download | rails-edfc7b96a12fa4422071b61f55da5a7a238b78b2.tar.gz rails-edfc7b96a12fa4422071b61f55da5a7a238b78b2.tar.bz2 rails-edfc7b96a12fa4422071b61f55da5a7a238b78b2.zip |
[ci skip] Guides: Add definition of `config.assets.manifest` option to configuring.md
-rw-r--r-- | guides/source/configuring.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/guides/source/configuring.md b/guides/source/configuring.md index 6e897d1714..c74ed03170 100644 --- a/guides/source/configuring.md +++ b/guides/source/configuring.md @@ -151,6 +151,8 @@ pipeline is enabled. It is set to true by default. * `config.assets.prefix` defines the prefix where assets are served from. Defaults to `/assets`. +* `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.debug` disables the concatenation and compression of assets. Set to `true` by default in `development.rb`. |