Core Concepts

Components

Modular building blocks for creating rich documentation layouts.

Configuration

The devdocs.config.js file allows you to customize every aspect of your site, including the sidebar structure, site metadata, and SEO settings.

module.exports = {
  projectName: 'My Dev Project',
  version: '2.4.0',
  features: {
    darkMode: true,
    copyCode: true
  }
};

Theming

Easily match your brand identity by modifying the theme configuration. You can toggle between light and dark modes or define a custom color palette using CSS variables.

Warning
Overriding core CSS variables may affect the contrast ratio of certain components. Always verify accessibility after making changes.