css – Rails 4.1和Bootstrap 3 glyphicons无法正常工作

前端之家收集整理的这篇文章主要介绍了css – Rails 4.1和Bootstrap 3 glyphicons无法正常工作前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我试图摆脱使用Bootstrap 3的Rails 4项目中的glyphicon错误.我没有使用任何Bootstrap gems将其添加到资产管道.我手动将bootstrap.css和bootstrap.js添加到各自的app / assets目录,并将它们添加到application.css和application.js我现在看到的是我的Web浏览器控制台中的以下内容

GET http://localhost:3000/fonts/glyphicons-halflings-regular.woff 404 (Not Found) localhost/:1
GET http://localhost:3000/fonts/glyphicons-halflings-regular.ttf 404 (Not Found) localhost/:1
GET http://localhost:3000/fonts/glyphicons-halflings-regular.svg 404 (Not Found) 

在Ruby on Rails应用程序中可以做些什么来解决这个问题?我尝试将所述文件复制到app / assets / fonts并将其弹出到application.rb中:

config.assets.paths << "#{Rails}/app/assets/fonts"

没运气.

最佳答案
上面提供的所有解决方案都是脏的.解决此问题的正确方法是在sass文件中的bootstrap之前包含“bootstrap-sprockets”:

@import "bootstrap-sprockets";
@import "bootstrap";
原文链接:https://www.f2er.com/css/427624.html

猜你在找的CSS相关文章