You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using version 4.0.0 with Rails 5.1.4 and have Glyphicons enabled in the bootstrap_and_overrides.css.less file:
@import "twitter/bootstrap/bootstrap";
// Glyphicons are not required by default, uncomment the following lines to enable them.
@glyphiconsEotPath: font-url("glyphicons-halflings-regular.eot");
@glyphiconsEotPath_iefix: font-url("glyphicons-halflings-regular.eot?#iefix");
@glyphiconsWoffPath: font-url("glyphicons-halflings-regular.woff");
@glyphiconsTtfPath: font-url("glyphicons-halflings-regular.ttf");
@glyphiconsSvgPath: font-url("glyphicons-halflings-regular.svg#glyphicons_halflingsregular");
@import "twitter/bootstrap/glyphicons.less";
However the path loaded from the generated CSS is not correct:
No route matches [GET] "/assets/fonts/glyphicons-halflings-regular.woff2"
When I add this code (which I found here) to the bootstrap_and_overrides.css.less, it works:
I am using version 4.0.0 with Rails 5.1.4 and have Glyphicons enabled in the
bootstrap_and_overrides.css.less
file:However the path loaded from the generated CSS is not correct:
When I add this code (which I found here) to the
bootstrap_and_overrides.css.less
, it works:Clearly, this is a hack. What would be the proper solution?
PS: This is in the
development
environment.The text was updated successfully, but these errors were encountered: