Files
gregWiki/sidebars.js
Marvin c46717b3cf refactor: update project branding and structure for gregFramework
- Changed project title and tagline in docusaurus.config.js to reflect the new branding.
- Updated package.json and package-lock.json to rename the project to gregwiki-docs-site.
- Adjusted sidebar and documentation files to align with the new project structure and naming conventions.
- Enhanced documentation content for clarity and consistency across various sections.
- Added Prettier as a development dependency for code formatting.

This commit aligns the project with the new branding and improves overall documentation structure.
2026-04-09 23:54:50 +02:00

167 lines
4.8 KiB
JavaScript

/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
docs: [
'intro',
{
type: 'category',
label: 'Workspace layout',
items: [
'README',
'getting-started',
'architecture',
'fmf-hooks',
'hexmod',
'workshop-uploader',
],
},
{
type: 'category',
label: 'Mods',
items: [
'mods/framework',
{
type: 'category',
label: 'Plugin Wiki',
items: [
'mods/extensions/index',
'mods/extensions/ffm-plugin-asset-exporter',
'mods/extensions/ffm-plugin-multiplayer',
'mods/extensions/ffm-plugin-player-models',
'mods/extensions/ffm-plugin-sysadmin',
'mods/extensions/ffm-plugin-web-ui-bridge',
],
},
{
type: 'category',
label: 'Mod Wiki',
items: [
'mods/mods/index',
'mods/mods/fmf-console-input-guard',
'mods/mods/fmf-gregify-employees',
'mods/extensions/fmf-hex-label-mod',
'mods/extensions/fmf-lang-compat-bridge',
'mods/extensions/fmf-ui-replacement-mod',
],
},
],
},
{
type: 'category',
label: 'Guides',
items: ['guides/enduser-workshop', 'guides/contributor-workshop', 'guides/release'],
},
{
type: 'category',
label: 'Releases',
link: {type: 'doc', id: 'releases/index'},
items: [
{
type: 'category',
label: 'Plugin releases',
items: [
'releases/plugins/ffm-plugin-asset-exporter-release',
'releases/plugins/ffm-plugin-multiplayer-release',
'releases/plugins/ffm-plugin-player-models-release',
'releases/plugins/ffm-plugin-sysadmin-release',
'releases/plugins/ffm-plugin-web-ui-bridge-release',
'releases/plugins/fmf-modpathredirector-release',
],
},
{
type: 'category',
label: 'Tool releases',
items: ['releases/tools/gregtools-modmanager-1.0-release'],
},
{
type: 'category',
label: 'Mod releases',
items: [
'releases/mods/fmf-console-input-guard-release',
'releases/mods/fmf-gregify-employees-release',
'releases/mods/fmf-hex-label-mod-release',
'releases/mods/fmf-lang-compat-bridge-release',
'releases/mods/fmf-ui-replacement-mod-release',
],
},
],
},
{
type: 'category',
label: 'Topics',
link: {type: 'doc', id: 'topics/index'},
items: [
'topics/index',
{
type: 'category',
label: 'Audiences & roles',
items: [
'topics/audiences/overview',
'topics/end-user/overview',
'topics/mod-developers/overview',
'topics/contributors/overview',
'topics/sponsors/overview',
'audiences/newbies',
'audiences/intermediates',
'audiences/professionals',
],
},
{
type: 'category',
label: 'Reference & technical',
items: [
'topics/reference/overview',
'reference/wiki-mapping',
'reference/mod-store-vision',
'reference/fmf-hook-naming',
'reference/fmf-hooks-catalog',
'reference/mcp-server',
'reference/release-channels',
],
},
{
type: 'category',
label: 'Roadmap & planning',
items: ['topics/roadmap/overview', 'roadmap/unified-roadmap', 'roadmap/mod-store-stages'],
},
{
type: 'category',
label: 'Contributors (workflow)',
items: [
'topics/contributors/overview',
'contributors/repo-inventory',
'contributors/monorepo-target-layout',
'contributors/luminescent-design-system',
'contributors/docusaurus-workflow',
'contributors/plugin-submission-audit',
],
},
{
type: 'category',
label: 'Legacy wiki import',
link: {type: 'doc', id: 'topics/wiki-import/overview'},
items: [
'topics/wiki-import/overview',
{
type: 'autogenerated',
dirName: 'wiki-import',
},
],
},
{
type: 'category',
label: 'Meta & operations',
items: [
'topics/meta/overview',
'topics/meta/game-folder-layout',
'meta/Steam-Workshop-and-Tooling',
'meta/devserver-betas',
'meta/IDEA_BACKLOG',
],
},
],
},
],
};
module.exports = sidebars;