前几天发现无法访问hexo原来的本地地址,localhost:4000一直在转啊转,进不去,猜测是端口被占用。
修改端口的方法是,node_modules\hexo-server
里的index.js文件,12345678910111213/* global hexo */'use strict';var assign = require('object-assign');hexo.config.server = assign({ port: 4001, log: false, ip: '0.0.0.0', compress: false, header: true}, hexo.config.server);
修改port即可。