Sass将主机添加到图像路径助手

时间:2015-12-03 20:20:02

标签: ruby-on-rails sass

我在一堆.scss个文件中有以下内容:

image-path("some/image/i/only/want/the/dang/path.of")

development env:

中编译得很好
# rake assets:precompile
"/assets/some/image/i/only/want/the/dang/path.of"

但是在编译production时,我得到了:

# RAILS_ENV=production rake assets:precompile
"https://dumd-cdn-I-dont-want.com/assets/some/image/i/only/want/the/dang/path.of"

它必须是我production.rb文件中的内容,但问题是我确实希望资产托管其他内容:

config.asset.host = "https://dumd-cdn-I-dont-want.com/"

事情是,我只是期待dang asset-path帮助,我不知道,只是给我路径并继续前进。

为什么哦为什么哦为什么不呢?

1 个答案:

答案 0 :(得分:0)

显然,这是期望的行为:https://github.com/rails/sass-rails/issues/355