Hexo安装maupassant主题
2020-01-17 本文已影响0人
梅林怒伯爵笑
maupassant是一个白色简约风格的Hexo主题,Github的项目地址在https://github.com/tufu9441/maupassant-hexo
,与其他Hexo主题安装不同的是,maupassant需要安装两个NPM的渲染器,而不巧的是,其中有一个渲染器(hexo-renderer-sass)又正好是国内网络访问不了的,经过几次尝试,终于找到了在国内网络环境下成功安装的方法。
首先在npm install的目录用淘宝的NPM镜像命令cnpm代替默认的npm:
$ npm install -g cnpm --registry=https://registry.npm.taobao.org
然后把主题下载下来,克隆下Github仓库:
$ git clone https://github.com/tufu9441/maupassant-hexo.git themes/maupassant
原本安装渲染器的命令是:
$ npm install hexo-renderer-pug --save
$ npm install hexo-renderer-sass --save
这时候就可以用淘宝NPM镜像的cnpm来代替npm:
$ cnpm install hexo-renderer-pug --save
$ cnpm install hexo-renderer-sass --save