mirror of
https://github.com/go-task/task.git
synced 2025-01-12 04:34:11 +02:00
7c93741670
* feat: docusaurus v3 * feat: update release tool to stop it from converting links - this is now done use mdx plugins * fix: broken links * feat: more github links and prettier config * chore: changelog * fix: blog emoji
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;
|