Files
mysql-press/docs/.vuepress/config.js
2021-05-08 11:03:38 +08:00

30 lines
602 B
JavaScript

module.exports = {
title: '测试',
description: '测试',
themeConfig: {
search:false,
sidebarDepth:2,
sidebar: 'auto',
nav: [
{ text: 'mysql', link: '/mysql/' },
],
sidebar: {
'/mysql/':[
'', /* /foo/ */
'install', /* /foo/one.html */
'create', /* /foo/two.html */
'insert',
'update',
'delete'
] ,
'/': [
'', /* / */
]
}
}
}