在我的 Rails 项目中,我尝试使用自定义字体。有很多与这个问题相关的答案,比如这个没有帮助的答案,我编辑了development.rb
:
# Add the fonts path
config.assets.paths << Rails.root.join('app', 'assets', 'fonts')
# Precompile additional assets
config.assets.precompile += %w( .svg .eot .woff .ttf )
它仍然显示No route matches [GET] "/assets/chalkduster-webfont.woff"
我让我url
喜欢:
@font-face {
font-family: 'chalkdusterregular';
src: url('chalkduster-webfont.eot');
src:url('chalkduster-webfont.svg#chalkdusterregular') format('svg'),
url('chalkduster-webfont.eot?#iefix') format('embedded-opentype'),
url('chalkduster-webfont.woff') format('woff'),
url('chalkduster-webfont.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
font_path('')
我在源代码中尝试过,font-url()
但它也从来没有用过。:(