Merge pull request #157 from curbengh/previewServer

feat: previewServer option
This commit is contained in:
Ming Di Leom 2024-06-07 20:06:54 +09:30 committed by GitHub
commit 7639547408
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 2 deletions

View File

@ -35,6 +35,7 @@ $ npm install hexo-yam --save
``` yaml ``` yaml
minify: minify:
enable: true enable: true
previewServer: true
html: html:
css: css:
js: js:
@ -46,6 +47,7 @@ minify:
``` ```
- **enable** - Enable the plugin. Defaults to `true`. - **enable** - Enable the plugin. Defaults to `true`.
- **previewServer** - Disable the plugin when running `hexo server`. Defaults to `true`.
- **html** - See [HTML](#html) section - **html** - See [HTML](#html) section
- **css** - See [CSS](#css) section - **css** - See [CSS](#css) section
- **js** - See [JS](#js) section - **js** - See [JS](#js) section

View File

@ -2,7 +2,8 @@
'use strict' 'use strict'
hexo.config.minify = Object.assign({ hexo.config.minify = Object.assign({
enable: true enable: true,
previewServer: true
}, hexo.config.minify) }, hexo.config.minify)
hexo.config.minify.html = Object.assign({ hexo.config.minify.html = Object.assign({
@ -93,7 +94,7 @@ hexo.config.minify.json = Object.assign({
globOptions: { basename: true } globOptions: { basename: true }
}, hexo.config.minify.json) }, hexo.config.minify.json)
if (hexo.config.minify.enable === true) { if (hexo.config.minify.enable === true && !(hexo.config.minify.previewServer === true && ['s', 'server'].includes(hexo.env.cmd))) {
const filter = require('./lib/filter') const filter = require('./lib/filter')
hexo.extend.filter.register('after_render:html', filter.minifyHtml, hexo.config.minify.html.priority) 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:css', filter.minifyCss, hexo.config.minify.css.priority)