UNPKG

777 BJavaScriptView Raw
1const path = require('path')
2
3module.exports = {
4 title: 'React Toolset',
5 webpackConfig: require('./config/webpack.config.dev.js'),
6 styleguideDir: path.join(__dirname, 'docs'),
7 highlightTheme: 'material',
8 require: [path.join(__dirname, 'src/styles/docs/styles.css')],
9 getComponentPathLine(componentPath) {
10 return;
11 },
12 showUsage: true,
13 sections: [
14 {
15 name: 'Introduction',
16 content: './src/Readme.md'
17 },
18 {
19 name: 'Elements',
20 components: './src/components/elements/**/index.jsx'
21 },
22 {
23 name: 'Layouts',
24 sections: [
25 {
26 name: 'Grid',
27 content: './src/components/layouts/Grid/Readme.md',
28 components: './src/components/layouts/Grid/**/index.jsx'
29 }
30 ]
31 }
32 ]
33}