deichrakete / kirby-cache
1.0.0
2024-09-17 15:39 UTC
Requires
This package is auto-updated.
Last update: 2024-09-17 15:44:19 UTC
README
这是一个为Kirby(一个基于文件的CMS)提供的简单缓存插件。目前它允许你为css()
和js()
函数添加缓存破坏器。
安装
- 下载插件文件。
- 将
cache
文件夹复制到Kirby安装的site/plugins
目录中,或者composer require deichrakete/kirby-cache
或者git 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, ] ]