mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Merge pull request #24070 from y-yagi/remove_unnecessary_config_in_sprockets-rails-3
remove config that are no longer needed in sprockets-rails 3
This commit is contained in:
commit
1d02fb6e37
4 changed files with 2 additions and 15 deletions
|
@ -670,7 +670,7 @@ anymore, delete these options from the `javascript_include_tag` and
|
|||
`stylesheet_link_tag`.
|
||||
|
||||
The fingerprinting behavior is controlled by the `config.assets.digest`
|
||||
initialization option (which defaults to `true` for production and development).
|
||||
initialization option (which defaults to `true`).
|
||||
|
||||
NOTE: Under normal circumstances the default `config.assets.digest` option
|
||||
should not be changed. If there are no digests in the filenames, and far-future
|
||||
|
|
|
@ -157,7 +157,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` and `development.rb`.
|
||||
* `config.assets.digest` enables the use of MD5 fingerprints in asset names. Set to `true` by default.
|
||||
|
||||
* `config.assets.debug` disables the concatenation and compression of assets. Set to `true` by default in `development.rb`.
|
||||
|
||||
|
|
|
@ -46,15 +46,6 @@ Rails.application.configure do
|
|||
# This option may cause significant delays in view rendering with a large
|
||||
# number of complex assets.
|
||||
config.assets.debug = true
|
||||
|
||||
# Asset digests allow you to set far-future HTTP expiration dates on all assets,
|
||||
# yet still be able to expire them through the digest params.
|
||||
config.assets.digest = true
|
||||
|
||||
# Adds additional error checking when serving assets at runtime.
|
||||
# Checks for improperly declared sprockets dependencies.
|
||||
# Raises helpful error messages.
|
||||
config.assets.raise_runtime_errors = true
|
||||
<%- end -%>
|
||||
|
||||
# Raises error for missing translations
|
||||
|
|
|
@ -26,10 +26,6 @@ Rails.application.configure do
|
|||
# Do not fallback to assets pipeline if a precompiled asset is missed.
|
||||
config.assets.compile = false
|
||||
|
||||
# Asset digests allow you to set far-future HTTP expiration dates on all assets,
|
||||
# yet still be able to expire them through the digest params.
|
||||
config.assets.digest = true
|
||||
|
||||
# `config.assets.precompile` and `config.assets.version` have moved to config/initializers/assets.rb
|
||||
<%- end -%>
|
||||
|
||||
|
|
Loading…
Reference in a new issue