涡轮增压链轮似乎在下列情况下失败:
预期结果:应该重新编译css文件,因为它已经恢复到以前的状态。
编辑:来自application.rb的相关代码
#for PDF
config.middleware.use PDFKit::Middleware, :print_media_type => true
# Enable the asset pipeline
config.assets.enabled = true
# Version of your assets, change this if you want to expire all your assets
config.assets.version = '1.0'
config.middleware.use I18n::JS::Middleware
config.sass.preferred_syntax = :sass
config.generators.stylesheet_engine = :sass
config.generators.template_engine = :slim
config.cache_store = :file_store, "tmp/cache" # specifying the cache store to file_store with the default tmp/cache dir
## Append path to the end of routes file to catch routing errors specifically.
config.after_initialize do |app|
app.routes.append{ match '*a', :to => 'application#error_404' } unless config.consider_all_requests_local
end来自环境/生产.:
config.cache_classes = true
# Full error reports are disabled and caching is turned on
config.consider_all_requests_local = false
config.action_controller.perform_caching = true
# Disable Rails's static asset server (Apache or nginx will already do this)
config.serve_static_assets = false
# Compress JavaScripts and CSS
config.assets.compress = true
# Don't fallback to assets pipeline if a precompiled asset is missed
config.assets.compile = true
# Generate digests for assets URLs
config.assets.digest = true发布于 2015-01-06 15:33:24
更改下列文件:
环境/生产。
# Don't fallback to assets pipeline if a precompiled asset is missed
config.assets.compile = falseapplication.rb
# Enable the asset pipeline
config.assets.enabled = falsehttps://stackoverflow.com/questions/27725455
复制相似问题