This is a simple cache plugin for Kirby, a file-based CMS. At the moment it allows you to add a cache-buster for the css()
and js()
functions.
cache
folder into the site/plugins
directory of your Kirby installation or
composer require deichrakete/kirby-cache
orgit submodule add https://github.com/deichrakete/kirby-cache.git site/plugins/cache
# everything is true by default
'deichrakete.cache.options' => [
'buster' => [
'css' => false,
'js' => false,
]
]