hexo-yam/index.js

66 lines
1.9 KiB
JavaScript
Raw Normal View History

2016-05-26 11:09:41 +00:00
/* global hexo */
if (hexo.config.neat_enable === true) {
// HTML minifier
hexo.config.neat_html = Object.assign({
enable: true,
2018-10-25 09:45:26 +00:00
logger: false,
exclude: [],
ignoreCustomComments: [/^\s*more/],
removeComments: true,
removeCommentsFromCDATA: true,
collapseWhitespace: true,
collapseBooleanAttributes: true,
removeEmptyAttributes: true,
minifyJS: true,
minifyCSS: true
}, hexo.config.neat_html)
2016-05-26 11:09:41 +00:00
// Css minifier
hexo.config.neat_css = Object.assign({
enable: true,
2018-10-25 09:45:26 +00:00
logger: false,
2019-04-23 04:01:04 +00:00
exclude: ['*.min.css'],
level: 2
}, hexo.config.neat_css)
2016-05-26 11:09:41 +00:00
// Js minifier
hexo.config.neat_js = Object.assign({
enable: true,
2018-10-25 09:45:26 +00:00
logger: false,
2019-04-23 04:01:04 +00:00
exclude: ['*.min.js'],
mangle: true,
output: {},
2019-04-23 04:01:04 +00:00
compress: {}
}, hexo.config.neat_js)
2016-05-26 11:09:41 +00:00
2019-04-23 07:59:35 +00:00
// SVG minifier
hexo.config.neat_svg = Object.assign({
enable: true,
logger: false,
include: ['*.svg','!*.min.svg'],
plugin: []
}, hexo.config.neat_svg)
// gzip compression
hexo.config.neat_gzip = Object.assign({
enable: true,
logger: false,
include: ['*.html','*.css','*.js','*.txt','*.ttf','*.atom','*.stl','*.xml','*.svg','*.eot','*.json']
}, hexo.config.neat_gzip)
2016-05-26 11:09:41 +00:00
// brotli compression
hexo.config.neat_brotli = Object.assign({
enable: true,
logger: false,
include: ['*.html','*.css','*.js','*.txt','*.ttf','*.atom','*.stl','*.xml','*.svg','*.eot','*.json']
}, hexo.config.neat_brotli)
2018-09-30 07:30:32 +00:00
const filter = require('./lib/filter')
hexo.extend.filter.register('after_render:html', filter.logicHtml)
hexo.extend.filter.register('after_render:css', filter.logicCss)
hexo.extend.filter.register('after_render:js', filter.logicJs)
2019-04-23 07:59:35 +00:00
hexo.extend.filter.register('after_generate', filter.logicSvg)
hexo.extend.filter.register('after_generate', filter.logicGzip)
hexo.extend.filter.register('after_generate', filter.logicBrotli)
}