Hexo安装和卸载插件命令
查看已安装插件
hexo的插件配置在根目录的package.json
中,在dependencies
节点中
1 | { |
安装命令
1 | npm install 插件名称 --save |
卸载命令
1 | npm uninstall 插件名称 |
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 LeDao's Blog!
评论
hexo的插件配置在根目录的package.json
中,在dependencies
节点中
1 | { |
1 | npm install 插件名称 --save |
1 | npm uninstall 插件名称 |