Skip to content
Merged
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
1 change: 1 addition & 0 deletions www/vocs.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { defineConfig } from 'vocs'

export default defineConfig({
title: 'MCP-Go',
search: {},
Copy link
Contributor

Choose a reason for hiding this comment

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

🛠️ Refactor suggestion

Empty search config may be ineffective
Currently search: {} doesn’t actually hook up any search backend. You’ll need to specify your search provider (e.g., Algolia) and its required options (appId, apiKey, indexName), or confirm that the default local search plugin’s settings will be auto-applied.

🤖 Prompt for AI Agents
In www/vocs.config.ts at line 5, the search configuration is currently an empty
object, which means no search backend is connected. To fix this, specify the
search provider you intend to use, such as Algolia, and provide all required
options like appId, apiKey, and indexName. Alternatively, confirm and configure
the default local search plugin settings if you want to use that instead.

baseUrl: 'https://mcp-go.dev',
basePath: '/',
logoUrl: '/logo.png',
Expand Down