30 lines
602 B
JavaScript
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'
|
|
] ,
|
|
'/': [
|
|
'', /* / */
|
|
]
|
|
|
|
|
|
|
|
}
|
|
}
|
|
}
|