对于rack-mini-profiler
我想添加一个特殊的诊断选项,允许您在生产中查看“扩展”的css和js资产。
因此,如果用户键入http://somesite.com/?pp=expand_assets
,我们会以某种方式通知sprockets以回退为此特定请求提供未经授权和非捆绑的资产。其余请求应不受影响。
我怎么会得到这样的东西?我需要修补补丁,还是内置挂钩?
答案 0 :(得分:0)
阅读Sprockets代码,看起来Rails helpers内置了这个代码:
config.assets.compile = true
来启用后备资产编译。debug_assets=true
添加到任何请求中。