一旦我完成了bundle exec rake assets:precompile RAILS_ENV=production
似乎它创造了类似application-e24jrjf834jg93bwuk13uy5gfd1y24f.css
然后,当我访问该页面时,将从我的应用程序调用该页面。
在开发模式下,我可以仅将更改添加到 css 文件并应用它。
在生产模式下,我还能对 css 添加一些小改动吗?如果可能,如何?
如果您在production.rb文件中将config.assets.initialize_on_precompile
设置为true
,那么您需要做的就是重新启动服务器。否则,只需通过运行bundle exec rake assets:clean
删除预编译的资源,然后再次预编译资产bundle exec rake assets:precompile RAILS_ENV=production
。