mirror of
https://github.com/go-task/task.git
synced 2024-12-14 10:52:43 +02:00
15 lines
271 B
TypeScript
15 lines
271 B
TypeScript
|
import { SidebarsConfig } from '@docusaurus/plugin-content-docs';
|
||
|
|
||
|
export default {
|
||
|
taskSidebar: [
|
||
|
{
|
||
|
type: 'autogenerated',
|
||
|
dirName: '.'
|
||
|
},
|
||
|
{
|
||
|
type: 'html',
|
||
|
value: '<div id="sidebar-ads"></div>'
|
||
|
}
|
||
|
],
|
||
|
} satisfies SidebarsConfig;
|