mirror of
https://github.com/go-task/task.git
synced 2024-12-12 10:45:49 +02:00
18 lines
298 B
JavaScript
18 lines
298 B
JavaScript
// @ts-check
|
|
|
|
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
|
|
const sidebars = {
|
|
tutorialSidebar: [
|
|
{
|
|
type: 'autogenerated',
|
|
dirName: '.'
|
|
},
|
|
{
|
|
type: 'html',
|
|
value: '<div id="sidebar-ads"></div>'
|
|
}
|
|
]
|
|
};
|
|
|
|
module.exports = sidebars;
|