build: 添加 postbuild sitemap 生成脚本 + robots.txt SEO

- package.json: 添加 postbuild 钩子自动生成 sitemap
- scripts/generate-sitemap.js: 站点地图生成器(78 条 URL)
- public/robots.txt: SEO 爬虫引导

Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
This commit is contained in:
TradeMate Dev
2026-06-23 21:24:20 +08:00
parent c10a33e9f8
commit f4f17c10d8
3 changed files with 92 additions and 0 deletions
+1
View File
@@ -7,6 +7,7 @@
"predev": "rm -rf out",
"dev": "next dev",
"build": "next build",
"postbuild": "node scripts/generate-sitemap.js",
"typecheck": "tsc --noEmit",
"start": "next start",
"lint": "next lint",