今天使用了bootstrap-sass进行布局,真的很好用,据说是tweet 开源的一个东东,本地一切都OK的时候欢喜的git push heroku后,发现bootstrap css的样式并没有预期中的显示出来,感觉还是挺沮丧,但是有问题就要解决,于是抱着技术问题问Google的态度,搜索了下,在 stackoverflow上找到了解决方法,不得不说stackoverflow真是个好东西,我的问题大部分都是在那上面解决的。
原文:
I could not view the site with bootstrap CSS on Heroku so I did the following change on config/environments/production.rb, change the line:
(翻译:我不能在heroku部署的应用上上看到bootstrap的css样式,所以我在config/environments/production.rb这个文件做了如下改动)
config.assets.compile = false
To:
config.assets.compile = true
哈哈,问题就解决了!多谢多谢!!!!!!IT WORKS!
时间: 2024-10-10 06:39:38