Resource compression
In the source code of the Redefine theme, resource files such as HTML, CSS, JavaScript, and images are not packaged and compressed. The same is true for most Hexo themes. Fortunately, related plugins can be found to solve this problem.
Here you can use the hexo-all-minifier plugin, which integrates html-minifier
, clean-css
, uglify
and imagemin
`, install and simple configuration to use.
Install hexo-all-minifier in the root directory of the Hexo project.
$ npm install hexo-all-minifier
In the Hexo configuration file
_config.yml
, add the following configuration items:all_minifier: true
If you have problems using the plugin or want to do more detailed settings, please check the plugin's documentation.
Last updated