我正在使用cdn作为我的预编译资产,它正在使用这个asset_host配置......
config.action_controller.asset_host = "http://xxxxxx.xx.rackcdn.com"
我的资产路径正在出现
http://xxxxxx.xx.rackcdn.com/assets/application-xxxxxxxxx.css
当我需要它们时
http://xxxxxx.xx.rackcdn.com/application-xxxxxxxxx.css
我缺少什么配置值来从路径中删除资产?
答案 0 :(得分:4)
您可以通过指定
来更改资产路径
config.assets.prefix = '/other/path-prefix'
中的config/application.rb
或config/environments/<env>.rb
中的特殊环境。
要删除路径,请将其完全设置为空字符串:
config.assets.prefix = ''