Files
Claude-Code-Workflow/ccw/docs-site/.docusaurus/docusaurus.config.mjs
catlog22 37ba849e75 feat: add CLI Viewer Page with multi-pane layout and state management
- Implemented the CliViewerPage component for displaying CLI outputs in a configurable multi-pane layout.
- Integrated Zustand for state management, allowing for dynamic layout changes and tab management.
- Added layout options: single, split horizontal, split vertical, and 2x2 grid.
- Created viewerStore for managing layout, panes, and tabs, including actions for adding/removing panes and tabs.
- Added CoordinatorPage barrel export for easier imports.
2026-02-03 17:28:26 +08:00

292 lines
6.2 KiB
JavaScript

/*
* 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": "http://localhost:3001",
"baseUrl": "/docs/",
"organizationName": "ccw",
"projectName": "docs",
"trailingSlash": false,
"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
};