2016-05-26 11:09:41 +00:00
|
|
|
/* global hexo */
|
2019-05-27 01:14:04 +00:00
|
|
|
'use strict'
|
|
|
|
|
2020-09-05 11:18:35 +00:00
|
|
|
hexo.config.minify = Object.assign({
|
2020-09-05 11:41:22 +00:00
|
|
|
enable: true
|
2020-09-05 11:18:35 +00:00
|
|
|
}, hexo.config.minify)
|
2019-09-11 01:15:19 +00:00
|
|
|
|
2020-09-05 11:41:22 +00:00
|
|
|
hexo.config.minify.html = Object.assign({
|
|
|
|
enable: true,
|
|
|
|
priority: 10,
|
|
|
|
verbose: false,
|
|
|
|
exclude: [],
|
|
|
|
collapseBooleanAttributes: true,
|
|
|
|
collapseWhitespace: true,
|
|
|
|
// Ignore '<!-- more -->' https://hexo.io/docs/tag-plugins#Post-Excerpt
|
|
|
|
ignoreCustomComments: [/^\s*more/],
|
|
|
|
removeComments: true,
|
|
|
|
removeEmptyAttributes: true,
|
|
|
|
removeScriptTypeAttributes: true,
|
|
|
|
removeStyleLinkTypeAttributes: true,
|
|
|
|
minifyJS: true,
|
|
|
|
minifyCSS: true,
|
|
|
|
globOptions: { basename: true }
|
|
|
|
}, hexo.config.minify.html)
|
|
|
|
|
|
|
|
hexo.config.minify.css = Object.assign({
|
|
|
|
enable: true,
|
|
|
|
priority: 10,
|
|
|
|
verbose: false,
|
|
|
|
exclude: ['*.min.css'],
|
|
|
|
level: 2,
|
|
|
|
globOptions: { basename: true }
|
|
|
|
}, hexo.config.minify.css)
|
|
|
|
|
|
|
|
hexo.config.minify.js = Object.assign({
|
|
|
|
enable: true,
|
|
|
|
priority: 10,
|
|
|
|
verbose: false,
|
|
|
|
exclude: ['*.min.js'],
|
|
|
|
compress: {},
|
|
|
|
mangle: true,
|
|
|
|
output: {},
|
|
|
|
globOptions: { basename: true }
|
|
|
|
}, hexo.config.minify.js)
|
|
|
|
|
|
|
|
hexo.config.minify.svg = Object.assign({
|
|
|
|
enable: true,
|
|
|
|
priority: 10,
|
|
|
|
verbose: false,
|
|
|
|
include: ['*.svg', '!*.min.svg'],
|
|
|
|
plugins: [],
|
|
|
|
globOptions: { basename: true }
|
|
|
|
}, hexo.config.minify.svg)
|
|
|
|
|
|
|
|
hexo.config.minify.gzip = Object.assign({
|
|
|
|
enable: true,
|
|
|
|
priority: 10,
|
|
|
|
verbose: false,
|
|
|
|
include: ['*.html', '*.css', '*.js', '*.txt', '*.ttf', '*.atom', '*.stl', '*.xml', '*.svg', '*.eot', '*.json'],
|
|
|
|
globOptions: { basename: true }
|
|
|
|
}, hexo.config.minify.gzip)
|
|
|
|
|
|
|
|
hexo.config.minify.brotli = Object.assign({
|
|
|
|
enable: true,
|
|
|
|
priority: 10,
|
|
|
|
verbose: false,
|
|
|
|
include: ['*.html', '*.css', '*.js', '*.txt', '*.ttf', '*.atom', '*.stl', '*.xml', '*.svg', '*.eot', '*.json'],
|
|
|
|
globOptions: { basename: true }
|
|
|
|
}, hexo.config.minify.brotli)
|
|
|
|
|
|
|
|
hexo.config.minify.xml = Object.assign({
|
|
|
|
enable: false,
|
|
|
|
priority: 10,
|
|
|
|
verbose: false,
|
|
|
|
include: ['*.xml', '!*.min.xml'],
|
|
|
|
removeComments: true,
|
|
|
|
globOptions: { basename: true }
|
|
|
|
}, hexo.config.minify.xml)
|
|
|
|
|
|
|
|
hexo.config.minify.json = Object.assign({
|
|
|
|
enable: false,
|
|
|
|
priority: 10,
|
|
|
|
verbose: false,
|
|
|
|
include: ['*.json', '!*.min.json'],
|
|
|
|
globOptions: { basename: true }
|
|
|
|
}, hexo.config.minify.json)
|
|
|
|
|
2019-09-11 01:15:19 +00:00
|
|
|
if (hexo.config.minify.enable === true) {
|
2018-10-26 04:57:23 +00:00
|
|
|
const filter = require('./lib/filter')
|
2019-10-09 22:33:34 +00:00
|
|
|
hexo.extend.filter.register('after_render:html', filter.minifyHtml, hexo.config.minify.html.priority)
|
|
|
|
hexo.extend.filter.register('after_render:css', filter.minifyCss, hexo.config.minify.css.priority)
|
|
|
|
hexo.extend.filter.register('after_render:js', filter.minifyJs, hexo.config.minify.js.priority)
|
|
|
|
hexo.extend.filter.register('after_generate', filter.minifySvg, hexo.config.minify.svg.priority)
|
|
|
|
hexo.extend.filter.register('after_generate', filter.gzipFn, hexo.config.minify.gzip.priority)
|
|
|
|
hexo.extend.filter.register('after_generate', filter.brotliFn, hexo.config.minify.brotli.priority)
|
2020-01-03 00:35:25 +00:00
|
|
|
hexo.extend.filter.register('after_generate', filter.minifyXml, hexo.config.minify.xml.priority)
|
2020-01-03 01:16:38 +00:00
|
|
|
hexo.extend.filter.register('after_generate', filter.minifyJson, hexo.config.minify.json.priority)
|
2018-09-29 05:38:45 +00:00
|
|
|
}
|