我正在使用带有bootstrap-sass gem的rails。
我遇到了错误:
ActionController::RoutingError (No route matches [GET] "/img/glyphicons-halflings.png"):
我的 bootstrap和overrides.css.scss 是:
@import "bootstrap";
body { padding-top: 60px; }
@import "bootstrap-responsive";
的application.js
//= require jquery
//= require jquery_ujs
//= require bootstrap
//= require paloma
//= require_tree .
答案 0 :(得分:2)
如果您使用bootstrap_and_overrides.css.scss
gem "twitter-bootstrap-rails"
中试用此代码
@import "twitter/bootstrap/bootstrap";
@import "twitter/bootstrap/responsive";
// Set the correct sprite paths
@iconSpritePath: asset-path("twitter/bootstrap/glyphicons-halflings.png");
@iconWhiteSpritePath: asset-path("twitter/bootstrap/glyphicons-halflings-white.png");