mirror of
https://github.com/jacobinwwey/obsidian-NotEMD.git
synced 2026-07-22 05:48:27 +00:00
- Remove ja locale: 0 translated pages caused hreflang mismatch (English content served with hreflang="ja" tag). ja/ removed from config and build output - Sidebar reorder: Getting Started before pillar-ai-knowledge, FAQ moved to last position for new-user reading flow - Organization Schema: add sameAs with GitHub repo and Discord URLs - Logo reference: update from .png to .svg in global Schema - Docusaurus packages: upgrade core/preset from ^3.6.3 to ^3.10.1 (matches theme-mermaid version, fixes version inconsistency) - Update GEO_ROADMAP.md with Phase 3 completion status
54 lines
1.1 KiB
JavaScript
54 lines
1.1 KiB
JavaScript
// @ts-check
|
|
|
|
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
|
|
const sidebars = {
|
|
tutorialSidebar: [
|
|
'intro',
|
|
{
|
|
type: 'category',
|
|
label: 'Getting Started',
|
|
items: [
|
|
'getting-started/installation',
|
|
'getting-started/quick-start',
|
|
'getting-started/configuration',
|
|
],
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Core Features',
|
|
items: [
|
|
'features/wiki-links',
|
|
'features/concept-notes',
|
|
'features/research',
|
|
'features/translation',
|
|
'features/diagrams',
|
|
'features/workflows',
|
|
],
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'LLM Providers',
|
|
items: [
|
|
'providers/overview',
|
|
'providers/openai',
|
|
'providers/anthropic',
|
|
'providers/google',
|
|
'providers/local',
|
|
'providers/china',
|
|
],
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Advanced',
|
|
items: [
|
|
'advanced/custom-prompts',
|
|
'advanced/batch-processing',
|
|
'advanced/troubleshooting',
|
|
],
|
|
},
|
|
'pillar-ai-knowledge',
|
|
'faq',
|
|
],
|
|
};
|
|
|
|
export default sidebars;
|