-
Notifications
You must be signed in to change notification settings - Fork 23
/
webpack.prod.js
55 lines (46 loc) · 971 Bytes
/
webpack.prod.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
path = require('path')
module.exports = {
devtool: 'cheap-module-eval-source-map',
entry: [
path.join(__dirname, 'src', 'index.js')
],
output: {
path: path.join(__dirname, 'public'),
publicPath: '/',
filename: 'bundle.js'
},
stats: {
colors: true,
reasons: true, // verbose errors
chunks: false // clean summary output
},
module: {
preLoaders: [{
// set up standard-loader as a preloader
test: /\.jsx?$/,
include: path.join(__dirname, 'src'),
loader: 'standard'
}],
loaders: [
{
test: /\.jsx?$/,
exclude: /node_modules/,
loader: 'babel'
},
{
test: /\.styl$/,
exclude: /node_modules/,
loader: 'style-loader!css-loader!stylus-loader'
}
]
},
standard: {
parser: 'babel-eslint'
},
resolve: {
extensions: ['', '.js', '.jsx', '.styl'],
root: [
path.join(__dirname, 'src')
]
}
};