Skip to content

Commit c1bc301

Browse files
calderbuildclaude
andcommitted
fix: 排除内部文档不被 Jekyll 渲染到网站
问题: - PERFORMANCE-OPTIMIZATION.md 被渲染成网页 - SEO优化报告等内部文档出现在网站上 解决: - 添加报告文件到 exclude 列表 - 排除 document/ 目录 - 排除所有 *报告*.md 和 *-REPORT*.md 文件 🤖 Generated with Claude Code (https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
1 parent 79b529b commit c1bc301

File tree

1 file changed

+13
-9
lines changed

1 file changed

+13
-9
lines changed

_config.yml

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# Site settings
2-
title: Jason's Blog
3-
SEOTitle: Jason's AI & Tech Insights
4-
header-img: img/home-bg-o.jpg
2+
title: Jason's Blog
3+
SEOTitle: Jason's AI & Tech Insights
4+
header-img: img/home-bg-o.jpg
55
email: johnrobertdestiny@gmail.com
6-
description: "AI Agent 开发、全栈实践、获奖项目经验分享。用真实生产案例和多智能体架构,帮助你快速上线可赚钱的 AI 产品。"
7-
keyword: "AI Agent, Core Web Vitals, PageSpeed, Devtools MCP, 多智能体, 性能优化"
8-
url: "https://jasonrobert.me" # your host, for absolute URL
9-
baseurl: "" # for example, '/blog' if your blog hosted on 'host/blog'
10-
ads_enabled: false
11-
seo_fixer_enabled: false
6+
description: "AI Agent 开发、全栈实践、获奖项目经验分享。用真实生产案例和多智能体架构,帮助你快速上线可赚钱的 AI 产品。"
7+
keyword: "AI Agent, Core Web Vitals, PageSpeed, Devtools MCP, 多智能体, 性能优化"
8+
url: "https://jasonrobert.me" # your host, for absolute URL
9+
baseurl: "" # for example, '/blog' if your blog hosted on 'host/blog'
10+
ads_enabled: false
11+
seo_fixer_enabled: false
1212

1313
# Publish posts or collection documents with a future date.
1414
future: true
@@ -42,12 +42,16 @@ exclude:
4242
"archive/CLAUDE.md",
4343
"archive/README.md",
4444
"doc/",
45+
"document/",
4546
"*.sh",
4647
"build.sh",
4748
".vscode/",
4849
"vendor/",
4950
"Gemfile",
5051
"Gemfile.lock",
52+
"PERFORMANCE-OPTIMIZATION.md",
53+
"*-REPORT*.md",
54+
"*报告*.md",
5155
]
5256
anchorjs: true # if you want to customize anchor. check out line:181 of `post.html`
5357
# If you have timezone issue (e.g. #68) in China, uncomment to use this:

0 commit comments

Comments
 (0)