mirror of
https://github.com/go-task/task.git
synced 2024-12-12 10:45:49 +02:00
21 lines
363 B
JavaScript
21 lines
363 B
JavaScript
// @ts-check
|
|
|
|
const { CHINESE_URL } = require('./constants');
|
|
|
|
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
|
|
const sidebars = {
|
|
tutorialSidebar: [
|
|
{
|
|
type: 'autogenerated',
|
|
dirName: '.'
|
|
},
|
|
{
|
|
type: 'link',
|
|
label: 'Chinese | 中国人',
|
|
href: CHINESE_URL
|
|
}
|
|
]
|
|
};
|
|
|
|
module.exports = sidebars;
|