我在一堆.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
帮助,我不知道,只是给我路径并继续前进。
为什么哦为什么哦为什么不呢?