hexo切換主題後hexo-theme-landscape報錯

chantAria發表於2020-12-18

報錯程式碼

hexo安裝一個新的主題後,在hexo根目錄更改_config.yml中的theme項後,每次執行hexo指令都會報如下錯誤

ERROR {
  err: [Error: EISDIR: illegal operation on a directory, read] {
    errno: -4068,
    code: 'EISDIR',
    syscall: 'read'
  }
} Plugin load failed: %s hexo-theme-landscape

雖然不會影響後續執行,但是對於強迫症來說看著就非常揪心


報錯分析

會出現該錯誤使因為node_modules資料夾中存在hexo-theme-landscape


解決方法

刪除hexo-theme-landscape

rm -rf node_modules/hexo-theme-landscape

相關文章