Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.
Quick StartCreate a new post1$ hexo new "My New Post"
More info: Writing
Run server1$ hexo server
More info: Server
Generate static files1$ hexo generate
More info: Generating
Deploy to remote sites1$ hexo deploy
More info: Deployment
本文将对本站(基于 Hexo + AnZhiYu 主题)的完整项目目录结构进行详细解析,帮助理解每个模块的作用与协作关系。
项目概览本站是一个基于 Hexo 框架搭建的静态博客,使用 AnZhiYu 主题,通过 Vercel 进行自动部署。包管理器选用 pnpm。
123456789101112131415myBlogs/├── .deploy_git/ # 部署产物(Git 部署目录)├── .github/ # GitHub Actions 工作流配置├── node_modules/ # 依赖包├── scaffolds/ # 文章模板├── source/ # 博客源文件(核心内容)├── themes/ # 主题目录│ └── anzhiyu/ # AnZhiYu 主题├── _config.yml # Hexo 主配置文件├── _config.landscape.yml # Landscape ...

