-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyleguide.config.js
71 lines (70 loc) · 1.8 KB
/
styleguide.config.js
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
const path = require('path');
module.exports = {
title: ' 题型组件',
components: ['src/components/**/*.js'], // 写入对应目录的文档
ignore: ['src/components/**/styles.js',
'src/components/audio/index.js',
'src/components/base/base_follow_up/content/*.js',
'src/components/ielts/ielts_question/**/*.js',
'src/components/base/base_follow_up/utils.js',
'src/components/base/index.js',
'src/components/ielts/article/**/*.js',
],
theme: {
baseBackground: '#fdfdfc',
link: '#274e75',
linkHover: '#90a7bf',
border: '#e0d2de',
font: ['Helvetica', 'sans-serif'],
},
styles: {
Playground: {
preview: {
paddingLeft: 0,
paddingRight: 0,
borderWidth: [[0, 0, 1, 0]],
borderRadius: 0,
},
},
Markdown: {
pre: {
border: 0,
background: 'none',
},
code: {
fontSize: 14,
},
},
},
// Override Styleguidist components
styleguideComponents: {
LogoRenderer: path.join(__dirname, 'styleguide/components/Logo'),
SectionsRenderer: path.join(__dirname, 'styleguide/components/SectionsRenderer'),
},
webpackConfig: {
module: {
rules: [
{
test: /\.jsx?$/,
exclude: /node_modules/,
loader: 'babel-loader',
},
{
test: /\.css$/,
loader: 'style-loader!css-loader?modules',
},
{
test: /\.(png|jpe?g|gif|svg)(\?.*)?$/,
loader: 'url-loader',
},
],
},
resolve: {
alias: {
// Make sure the example uses the local version of react-styleguidist
// This is only for the examples in this repo, you won't need it for your own project
// 'react-styleguidist': path.join(__dirname, '../../'),
},
},
},
}