16 lines
278 B
TypeScript
16 lines
278 B
TypeScript
import type {SidebarsConfig} from '@docusaurus/plugin-content-docs';
|
|
|
|
const sidebars: SidebarsConfig = {
|
|
docsSidebar: [
|
|
{
|
|
type: 'category',
|
|
label: 'DGX Spark',
|
|
items: [
|
|
'dgx-spark-minimax/index',
|
|
],
|
|
},
|
|
],
|
|
};
|
|
|
|
export default sidebars;
|