我目前正在开发一个 Rails 应用程序,它使用 bootstrap-sass gem 来帮助设置我的一些前端视图的样式。在本地运行时,浏览视图没有问题。Heroku 部署后,我收到以下错误:
ActionController::RoutingError (No route matches [GET] "/assets/bootstrap-responsive.css")
这是我的 application.rb 文件的片段:
# Enable the asset pipeline
config.assets.enabled = true
# Version of your assets, change this if you want to expire all your assets
config.assets.version = '1.0'
config.assets.compile = true
config.assets.initialize_on_precompile = false
关于如何通过资产预编译让 bootstrap-sass 在 Heroku 部署上工作有什么想法吗?