我完成了bundle exec rake assets:precompile RAILS_ENV=production
它似乎创建了application-e24jrjf834jg93bwuk13uy5gfd1y24f.css
之类的东西
然后当我访问该页面时,从我的应用程序调用该页面。
在开发模式下,我可以将更改添加到css文件并应用它 在生产模式下,我还可以对css添加少量更改吗? 如果可能,怎么样?
答案 0 :(得分:3)
如果您已在 production.rb 文件中将config.assets.initialize_on_precompile
设置为true
,那么您需要做的就是重新启动服务器。否则,只需运行bundle exec rake assets:clean
并再次预编译资产bundle exec rake assets:precompile RAILS_ENV=production
即可删除预编译资产。