简体   繁体   中英

rails assets precompile css order

I'm using zurb with rails. I overrode some of zurbs default css by adding changes to app/assets/stylesheets/application.css But precompilation seems to append all the other css files to this one. Is there any way to ensure that a certain css rule will be the last one to be precompiled to application.css?

可以在js和css的清单文件中指定资产的编译顺序http://guides.rubyonrails.org/asset_pipeline.html#manifest-files-and-directives

Use many requires in your application.css.scss

*= require css1
*= require css2
...

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM