-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyleguide.config.js
64 lines (61 loc) · 1.86 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
const path = require('path');
const fs = require('fs');
const OpenBrowserPlugin = require('open-browser-webpack-plugin');
const srcFolder = path.join(__dirname, 'src');
module.exports = {
serverHost: 'localhost',
serverPort: 6061,
styleguideDir: 'public',
title: 'React Easy Upload',
styleguideComponents: {
Wrapper: path.join(__dirname, 'src/Wrapper')
},
components: 'src/**/*.jsx',
webpackConfig: {
devtool: 'sourcemap',
module: {
rules: [
// Babel loader, will use your project’s .babelrc
{
test: /\.jsx?$/,
exclude: /node_modules/,
loader: 'babel-loader'
},
// Other loaders that are needed for your components
{
test: /\.s?css$/,
loaders: ['style-loader', 'css-loader?importLoaders=1', 'sass-loader?precision=10']
},
{
test: /\.svg$/,
loader: 'url-loader?limit=65000&mimetype=image/svg+xml&name=public/fonts/[name].[ext]'
},
{
test: /\.(png|jpg|gif)$/,
loader: 'url-loader?limit=65000&name=public/static/[name].[ext]'
},
{
test: /\.woff$/,
loader:
'url-loader?limit=65000&mimetype=application/font-woff&name=public/fonts/[name].[ext]'
},
{
test: /\.woff2$/,
loader:
'url-loader?limit=65000&mimetype=application/font-woff2&name=public/fonts/[name].[ext]'
},
{
test: /\.[ot]tf$/,
loader:
'url-loader?limit=65000&mimetype=application/octet-stream&name=public/fonts/[name].[ext]'
},
{
test: /\.eot$/,
loader:
'url-loader?limit=65000&mimetype=application/vnd.ms-fontobject&name=public/fonts/[name].[ext]'
}
]
},
plugins: [new OpenBrowserPlugin({ url: 'http://localhost:6061' })]
}
};