repair config

This commit is contained in:
rozbo 2016-05-26 19:46:01 +08:00
parent 1bbf03d05d
commit f17ff2064c
1 changed files with 3 additions and 3 deletions

View File

@ -10,7 +10,7 @@ var minimatch = require('minimatch');
function logic_html(str, data) { function logic_html(str, data) {
var hexo = this, var hexo = this,
options = hexo.config.html_minifier; options = hexo.config.neat_html;
// Return if disabled. // Return if disabled.
if (false === options.enable) return; if (false === options.enable) return;
@ -33,7 +33,7 @@ function logic_html(str, data) {
function logic_css(str, data) { function logic_css(str, data) {
var hexo = this, var hexo = this,
options = hexo.config.css_minifier; options = hexo.config.neat_css;
// Return if disabled. // Return if disabled.
if (false === options.enable) return; if (false === options.enable) return;
@ -60,7 +60,7 @@ function logic_css(str, data) {
function logic_js(str, data) { function logic_js(str, data) {
var hexo = this, var hexo = this,
options = hexo.config.js_minifier; options = hexo.config.neat_js;
// Return if disabled. // Return if disabled.
if (false === options.enable) return; if (false === options.enable) return;