0

I got the same problem like this thread:

Rails 4.1 and Bootstrap 3 glyphicons are not working

Ruby on Rails Bootstrap Glyphicons not working

I solved it by following their answer but there's an issue when it loads.

I got this error on Console.

GET http:// localhost:3000/assets/glyphicons-halflings-regular.ttf net::ERR_CONTENT_LENGTH_MISMATCH

It loads so slow.

Please help.

Community
  • 1
  • 1
BartSabayton
  • 535
  • 1
  • 5
  • 15

1 Answers1

0

Have you added the following in config/application.rb (within class Application < Rails::Application) ?

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

Check this blog post.

userden
  • 1,615
  • 6
  • 26
  • 50
  • This could be related to your issue: http://stackoverflow.com/questions/22889338/javascript-not-loading-due-to-neterr-content-length-mismatch – userden Sep 22 '14 at 06:03