sass-rails
gemのSASSヘルパーがCDNに対してURLを生成するようにするにはどうすればよいですか?
私はこれを持っていますapplication.rb
:
config.asset_host = 'https://cdn.host.com/'
これにより、ドキュメントの先頭には次のようになります。
<link href="https://cdn.host.com/favicon.ico" rel="shortcut icon" type="image/vnd.microsoft.icon" />
<link href="https://cdn.host.com/assets/application.css" rel="stylesheet" type="text/css" />
ただし、私のCSSファイルは次のようになります。
.splash { background: url('/assets/hero.png'); }