我正在使用土星網站主題來自Grav(https://getgrav.org/downloads/skeletons),並且想要更改主頁的背景圖像(以及最終的其他樣式)。在主題的自定義CSS(user/themes/saturn/css/custom.css
)中,我更改了背景圖像,但未更新新圖像,除非我更新了custom.css
和custom.min.css
。更新Grav主題的「未縮小」CSS文件後,如何縮小CSS?
我認爲改變這兩個文件是不合適的;系統應該生成一個新版本的縮小CSS。讀GRAV文檔(https://learn.getgrav.org/themes/asset-manager)我發現GRAV提供
的資產管道可用於來縮小和壓縮資產以減少瀏覽器請求的數量,也是資產的整體規模。
如何運行這個管道更新/再縮小主題的CSS?或者我需要安裝一個單獨的CSS縮小工具?
其他信息: 我user/config/system.yaml
文件包括這樣的:
assets: css_pipeline: false # The CSS pipeline is the unification of multiple CSS resources into one file css_minify: true # Minify the CSS during pipelining css_rewrite: true # Rewrite any CSS relative URLs during pipelining