我在 Heroku 上运行一个网站,并且在加载谷歌字体时遇到了一些麻烦。
我的typography.sass文件包含以下内容:
@import url(http://fonts.googleapis.com/css?family=Bitter)
h1
font-family: 'Bitter', Helvetica, serif
我的production.rb文件包含以下行:
config.serve_static_assets = true
config.assets.compile = true
config.assets.digest = true
我的Gemfile包括:
gem 'rails_12factor', group: :production
我已经处理了资产管道的所有 Heroku 问题,并且我的所有图像和 css 文件都可以在生产中正确加载,但无论出于何种原因,该字体仅在开发中有效。