Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有时我会忘记编译一个很小的新图像图标或其他东西,而不是仅仅向浏览器发送一个错误的 URL,以便它可以显示带有 ? 的小框,资产管道使我的整个应用程序崩溃。我认为这有点矫枉过正。如果可能的话,我宁愿让资产管道“优雅地失败”。是否有一个设置可以禁用在生产中引发错误?谢谢!
嗨,您可以通过设置禁用资产管道
config/application.rb 来自
config.assets.enabled = true
至
config.assets.enabled = false
您也可以参考本指南:
http://guides.rubyonrails.org/asset_pipeline.html