如何确保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'); }