Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion __tests__/crawler.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,8 @@ test('Crawl the docs and execute tests', async () => {
'https://docs.openstack.org/kolla-ansible/rocky/user/multi-regions.html',
'https://archive.istio.io/v1.15/docs/setup/additional-setup/sidecar-injection/#automatic-sidecar-injection',
'https://istio.io/v1.15/docs/reference/config/security/peer_authentication/',
'https://istio.io/v1.15/docs/setup/install/'
'https://istio.io/v1.15/docs/setup/install/',
'https://calico-docs.mcp.kapa.ai'
];

const lc = linkChecker();
Expand Down
3 changes: 3 additions & 0 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,9 @@ export default async function createAsyncConfig() {
'data-modal-header-bg-color': '#FFFFFF',
'data-user-analytics-fingerprint-enabled': 'true',
'data-user-analytics-store-ip': 'true',
'data-mcp-enabled': "true",
'data-mcp-server-url': "https://calico-docs.mcp.kapa.ai",
'data-mcp-button-text': "MCP",
Copy link

Copilot AI Dec 16, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Inconsistent quote style. These new configuration values use double quotes while the existing configuration values on lines 62-64 use single quotes. For consistency with the established codebase style, these should use single quotes.

Suggested change
'data-mcp-button-text': "MCP",
'data-mcp-button-text': 'MCP',

Copilot uses AI. Check for mistakes.
async: true,
},
],
Expand Down