mirror of https://github.com/alibaba/ice.git
38 lines
802 B
JavaScript
38 lines
802 B
JavaScript
/*
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
const getDocsFromDir = require('../scripts/getDocsFromDir');
|
|
|
|
module.exports = {
|
|
docs: [
|
|
'guide/about',
|
|
'guide/start',
|
|
// 'guide/practice',
|
|
{
|
|
type: 'category',
|
|
label: '指南',
|
|
collapsed: false,
|
|
items: getDocsFromDir('guide/basic'),
|
|
},
|
|
|
|
{
|
|
type: 'category',
|
|
label: '进阶',
|
|
collapsed: false,
|
|
items: [
|
|
...getDocsFromDir('guide/advanced'),
|
|
],
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: '插件',
|
|
collapsed: false,
|
|
items: getDocsFromDir('guide/plugins'),
|
|
},
|
|
],
|
|
examples: getDocsFromDir('examples'),
|
|
};
|