14 lines
256 B
JavaScript
14 lines
256 B
JavaScript
// @ts-check
|
|
|
|
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
|
|
const sidebars = {
|
|
libraryDocs: [
|
|
{
|
|
type: 'autogenerated',
|
|
dirName: '.', // Generate from the docs directory
|
|
},
|
|
],
|
|
};
|
|
|
|
module.exports = sidebars;
|