mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-12 02:37:45 +08:00
feat: initialize monorepo with package.json for CCW workflow platform
This commit is contained in:
290
ccw/docs-site/.docusaurus/docusaurus.config.mjs
Normal file
290
ccw/docs-site/.docusaurus/docusaurus.config.mjs
Normal file
@@ -0,0 +1,290 @@
|
||||
/*
|
||||
* AUTOGENERATED - DON'T EDIT
|
||||
* Your edits in this file will be overwritten in the next build!
|
||||
* Modify the docusaurus.config.js file at your site's root instead.
|
||||
*/
|
||||
export default {
|
||||
"title": "CCW Help Documentation",
|
||||
"tagline": "Professional Workflow Automation Platform",
|
||||
"favicon": "img/favicon.ico",
|
||||
"url": "https://ccw.dev",
|
||||
"baseUrl": "/docs/",
|
||||
"organizationName": "ccw",
|
||||
"projectName": "docs",
|
||||
"onBrokenLinks": "throw",
|
||||
"i18n": {
|
||||
"defaultLocale": "en",
|
||||
"locales": [
|
||||
"en",
|
||||
"zh"
|
||||
],
|
||||
"path": "i18n",
|
||||
"localeConfigs": {}
|
||||
},
|
||||
"presets": [
|
||||
[
|
||||
"@docusaurus/preset-classic",
|
||||
{
|
||||
"docs": {
|
||||
"sidebarPath": "./sidebars.ts",
|
||||
"editUrl": "https://github.com/ccw/docs/tree/main/"
|
||||
},
|
||||
"blog": false,
|
||||
"theme": {
|
||||
"customCss": [
|
||||
"./src/css/custom.css"
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
],
|
||||
"themeConfig": {
|
||||
"navbar": {
|
||||
"title": "CCW Help",
|
||||
"logo": {
|
||||
"alt": "CCW Logo",
|
||||
"src": "img/logo.svg"
|
||||
},
|
||||
"items": [
|
||||
{
|
||||
"type": "localeDropdown",
|
||||
"position": "right",
|
||||
"dropdownItemsBefore": [],
|
||||
"dropdownItemsAfter": []
|
||||
}
|
||||
],
|
||||
"hideOnScroll": false
|
||||
},
|
||||
"footer": {
|
||||
"style": "dark",
|
||||
"copyright": "Copyright © 2026 CCW. Built with Docusaurus.",
|
||||
"links": []
|
||||
},
|
||||
"prism": {
|
||||
"additionalLanguages": [
|
||||
"typescript",
|
||||
"javascript",
|
||||
"bash",
|
||||
"python",
|
||||
"java",
|
||||
"go",
|
||||
"yaml",
|
||||
"json"
|
||||
],
|
||||
"theme": {
|
||||
"plain": {
|
||||
"color": "#bfc7d5",
|
||||
"backgroundColor": "#292d3e"
|
||||
},
|
||||
"styles": [
|
||||
{
|
||||
"types": [
|
||||
"comment"
|
||||
],
|
||||
"style": {
|
||||
"color": "rgb(105, 112, 152)",
|
||||
"fontStyle": "italic"
|
||||
}
|
||||
},
|
||||
{
|
||||
"types": [
|
||||
"string",
|
||||
"inserted"
|
||||
],
|
||||
"style": {
|
||||
"color": "rgb(195, 232, 141)"
|
||||
}
|
||||
},
|
||||
{
|
||||
"types": [
|
||||
"number"
|
||||
],
|
||||
"style": {
|
||||
"color": "rgb(247, 140, 108)"
|
||||
}
|
||||
},
|
||||
{
|
||||
"types": [
|
||||
"builtin",
|
||||
"char",
|
||||
"constant",
|
||||
"function"
|
||||
],
|
||||
"style": {
|
||||
"color": "rgb(130, 170, 255)"
|
||||
}
|
||||
},
|
||||
{
|
||||
"types": [
|
||||
"punctuation",
|
||||
"selector"
|
||||
],
|
||||
"style": {
|
||||
"color": "rgb(199, 146, 234)"
|
||||
}
|
||||
},
|
||||
{
|
||||
"types": [
|
||||
"variable"
|
||||
],
|
||||
"style": {
|
||||
"color": "rgb(191, 199, 213)"
|
||||
}
|
||||
},
|
||||
{
|
||||
"types": [
|
||||
"class-name",
|
||||
"attr-name"
|
||||
],
|
||||
"style": {
|
||||
"color": "rgb(255, 203, 107)"
|
||||
}
|
||||
},
|
||||
{
|
||||
"types": [
|
||||
"tag",
|
||||
"deleted"
|
||||
],
|
||||
"style": {
|
||||
"color": "rgb(255, 85, 114)"
|
||||
}
|
||||
},
|
||||
{
|
||||
"types": [
|
||||
"operator"
|
||||
],
|
||||
"style": {
|
||||
"color": "rgb(137, 221, 255)"
|
||||
}
|
||||
},
|
||||
{
|
||||
"types": [
|
||||
"boolean"
|
||||
],
|
||||
"style": {
|
||||
"color": "rgb(255, 88, 116)"
|
||||
}
|
||||
},
|
||||
{
|
||||
"types": [
|
||||
"keyword"
|
||||
],
|
||||
"style": {
|
||||
"fontStyle": "italic"
|
||||
}
|
||||
},
|
||||
{
|
||||
"types": [
|
||||
"doctype"
|
||||
],
|
||||
"style": {
|
||||
"color": "rgb(199, 146, 234)",
|
||||
"fontStyle": "italic"
|
||||
}
|
||||
},
|
||||
{
|
||||
"types": [
|
||||
"namespace"
|
||||
],
|
||||
"style": {
|
||||
"color": "rgb(178, 204, 214)"
|
||||
}
|
||||
},
|
||||
{
|
||||
"types": [
|
||||
"url"
|
||||
],
|
||||
"style": {
|
||||
"color": "rgb(221, 221, 221)"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"magicComments": [
|
||||
{
|
||||
"className": "theme-code-block-highlighted-line",
|
||||
"line": "highlight-next-line",
|
||||
"block": {
|
||||
"start": "highlight-start",
|
||||
"end": "highlight-end"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"colorMode": {
|
||||
"defaultMode": "light",
|
||||
"disableSwitch": false,
|
||||
"respectPrefersColorScheme": false
|
||||
},
|
||||
"docs": {
|
||||
"versionPersistence": "localStorage",
|
||||
"sidebar": {
|
||||
"hideable": false,
|
||||
"autoCollapseCategories": false
|
||||
}
|
||||
},
|
||||
"blog": {
|
||||
"sidebar": {
|
||||
"groupByYear": true
|
||||
}
|
||||
},
|
||||
"metadata": [],
|
||||
"tableOfContents": {
|
||||
"minHeadingLevel": 2,
|
||||
"maxHeadingLevel": 3
|
||||
}
|
||||
},
|
||||
"markdown": {
|
||||
"mermaid": true,
|
||||
"format": "mdx",
|
||||
"emoji": true,
|
||||
"mdx1Compat": {
|
||||
"comments": true,
|
||||
"admonitions": true,
|
||||
"headingIds": true
|
||||
},
|
||||
"anchors": {
|
||||
"maintainCase": false
|
||||
},
|
||||
"hooks": {
|
||||
"onBrokenMarkdownLinks": "warn",
|
||||
"onBrokenMarkdownImages": "throw"
|
||||
}
|
||||
},
|
||||
"baseUrlIssueBanner": true,
|
||||
"future": {
|
||||
"v4": {
|
||||
"removeLegacyPostBuildHeadAttribute": false,
|
||||
"useCssCascadeLayers": false
|
||||
},
|
||||
"experimental_faster": {
|
||||
"swcJsLoader": false,
|
||||
"swcJsMinimizer": false,
|
||||
"swcHtmlMinimizer": false,
|
||||
"lightningCssMinimizer": false,
|
||||
"mdxCrossCompilerCache": false,
|
||||
"rspackBundler": false,
|
||||
"rspackPersistentCache": false,
|
||||
"ssgWorkerThreads": false
|
||||
},
|
||||
"experimental_storage": {
|
||||
"type": "localStorage",
|
||||
"namespace": false
|
||||
},
|
||||
"experimental_router": "browser"
|
||||
},
|
||||
"onBrokenAnchors": "warn",
|
||||
"onDuplicateRoutes": "warn",
|
||||
"staticDirectories": [
|
||||
"static"
|
||||
],
|
||||
"customFields": {},
|
||||
"plugins": [],
|
||||
"themes": [],
|
||||
"scripts": [],
|
||||
"headTags": [],
|
||||
"stylesheets": [],
|
||||
"clientModules": [],
|
||||
"titleDelimiter": "|",
|
||||
"noIndex": false
|
||||
};
|
||||
Reference in New Issue
Block a user