Is there a way to have two docs in Docusaurus 2?

You need to use the plugin-content-docs. First, create the other docs folder, like docs, docs-api, docs-system. (1) In your docusaurus.config.js file, configure your “default” docs: (module.exports = { // start of the module.export declaration […] presets: [ [ ‘@docusaurus/preset-classic’, { docs: { routeBasePath: ‘docs’, path: ‘docs’, sidebarPath: require.resolve(‘./sidebars.js’), lastVersion: ‘current’, onlyIncludeVersions: [‘current’], }, theme: { … Read more