0

我正在使用带有 bootstrap-sass gem 的 rails3。

我有一个错误:

ActionController::RoutingError (No route matches [GET] "/img/glyphicons-halflings.png"):

我的bootstrap_and_overrides.css.scss是:

@import "bootstrap";
body { padding-top: 60px; }
@import "bootstrap-responsive";

应用程序.js

//= require jquery
//= require jquery_ujs
//= require bootstrap
//= require paloma
//= require_tree .
4

1 回答 1

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");
于 2013-07-24T05:48:12.120 回答