forked from sah/material-ui-dropzone
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathstyleguide.config.js
More file actions
44 lines (44 loc) · 824 Bytes
/
styleguide.config.js
File metadata and controls
44 lines (44 loc) · 824 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
module.exports = {
title: 'Material-UI Dropzone',
showSidebar: false,
sections: [
{
name: '',
content: './docs/intro.md',
},
{
name: 'Installation',
content: './docs/installation.md',
},
{
name: 'Support',
content: './docs/support.md',
},
{
name: 'Screenshots',
content: './docs/screenshots.md',
},
{
name: 'Components',
components: './src/components/**.js',
},
{
name: 'Theme',
content: './docs/theming.md',
},
],
skipComponentsWithoutExample: true,
usageMode: 'expand',
sortProps: (props) => props,
webpackConfig: {
module: {
rules: [
{
test: /\.jsx?$/,
exclude: /node_modules/,
loader: 'babel-loader',
},
],
},
},
};