Problem: run the command when hexo is deployed.
Hexo d
The result shows [Error] hexo deployer not found: undefined.
After several queries, the problem is found in the _ config. yml file. The reasons for the above problems may be:
1. The file contains Chinese characters but is saved in the anscii format, leading to File Parsing failures due to garbled characters.
Solution: use Notepad (recommended UE) to open the file and modify garbled characters and save it as a UTF-8 in the selected encoding format.
2. When adding tags such as type, directly enter the value after ':', leading to File Parsing failure.
Solution: Add a space after ':' and enter the content you want to modify.
Especially in the second case, it is easy to ignore
We recommend a good article set up by hexo Bolg. If you are interested in hexo, please read this article.
Hexo deployer not found: Undefined Solution