Closed zmbacker closed 9 years ago
If you have config in your rails application like this: /config/enviroments/production.rb
# config.assets.prefix = "assets_prefx"
Then you should:
config.asset_url_prefix = "http://asset.example.com/assets_prefx/" if Rails.env.production?
原来的 _getBasePath 方法只能识别 config.assets.prefix 默认值 并且 application-md5 也在默认路径情况下的 资源地址。 如果自定义了 这些路径后可能就需要像我提交的PR这样去处理了。
@Macrow 请问什么时候能看看合并一下啊!
最近有点忙,不好意思。谢谢贡献代码,辛苦了。
If you have config in your rails application like this: /config/enviroments/production.rb
config.action_controller.asset_host = "http://asset.example.com"
Then you should:
config.asset_url_prefix = "http://asset.example.com/assets_prefx/" if Rails.env.production?