All checks were successful
Deploy Docusaurus Site / deploy (push) Successful in 26s
13 lines
218 B
TypeScript
13 lines
218 B
TypeScript
import type {SidebarsConfig} from '@docusaurus/plugin-content-docs';
|
|
|
|
const sidebars: SidebarsConfig = {
|
|
techSidebar: [
|
|
{
|
|
type: 'autogenerated',
|
|
dirName: '.',
|
|
},
|
|
],
|
|
};
|
|
|
|
export default sidebars;
|