All checks were successful
Deploy to Cloudflare Pages / deploy (push) Successful in 42s
新增定价与联系指引页面,包含四档流量包方案(99/199/599/1099), 各方案展示多种任务工作量参考,Token 消耗参考表,定制联系入口。 产品介绍页底部新增费用方案跳转按钮。 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
67 lines
1.5 KiB
TypeScript
67 lines
1.5 KiB
TypeScript
import { defineConfig } from "vitepress";
|
|
|
|
export default defineConfig({
|
|
title: "XCodeCLI",
|
|
description: "一键配置 Claude Code / Gemini CLI / Codex",
|
|
lang: "zh-CN",
|
|
|
|
head: [["link", { rel: "icon", href: "/favicon.ico" }]],
|
|
|
|
themeConfig: {
|
|
logo: "/logo.svg",
|
|
|
|
nav: [
|
|
{ text: "首页", link: "/" },
|
|
{ text: "快速开始", link: "/guide/" },
|
|
{ text: "XCodeClaw", link: "/xcodeclaw" },
|
|
],
|
|
|
|
sidebar: [
|
|
{
|
|
text: "快速开始",
|
|
items: [
|
|
{ text: "介绍", link: "/guide/" },
|
|
{ text: "Claude Code", link: "/guide/claude-code" },
|
|
{ text: "Gemini CLI", link: "/guide/gemini-cli" },
|
|
{ text: "Codex", link: "/guide/codex" },
|
|
{ text: "Cherry Studio 配置", link: "/cherry-studio-nanobana" },
|
|
],
|
|
},
|
|
{
|
|
text: "XCodeClaw",
|
|
items: [
|
|
{ text: "产品介绍", link: "/xcodeclaw" },
|
|
{ text: "飞书机器人配置", link: "/guide/feishu-bot" },
|
|
{ text: "新用户上手指引", link: "/guide/trial-guide" },
|
|
{ text: "费用方案", link: "/guide/pricing" },
|
|
],
|
|
},
|
|
],
|
|
|
|
socialLinks: [
|
|
{
|
|
icon: "github",
|
|
link: "https://gitea.sususu.cf/sususu/xcodecli-shells",
|
|
},
|
|
],
|
|
|
|
footer: {
|
|
message: "XCodeCLI API Router",
|
|
copyright: "© 2026",
|
|
},
|
|
|
|
search: {
|
|
provider: "local",
|
|
},
|
|
|
|
outline: {
|
|
label: "目录",
|
|
},
|
|
|
|
docFooter: {
|
|
prev: "上一页",
|
|
next: "下一页",
|
|
},
|
|
},
|
|
});
|