forked from BarukhOr/-FemHack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
46 lines (44 loc) · 876 Bytes
/
webpack.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
const path = require('path');
const WebpackNotifierPlugin = require('webpack-notifier');
var PATHS = {
entry: path.join(__dirname, 'src/entry.js'),
output: path.join(__dirname, 'build/bundle.js')
};
module.exports = {
entry:PATHS.entry,
output:{
path: __dirname + "/build",
filename:"bundle.js"
},
module:{
loaders:[
{
test: /\.(js)$/,
exclude: /(node_modules)/,
loader: 'babel',
query: {
presets: [
'babel-preset-es2015',
'babel-preset-react'
]
}
},
{
test: /\.styl$/,
exclude: /(node_modules)/,
loader: 'style-loader!css-loader!postcss-loader!stylus-loader'
},
{
test: /\.(jpg|png)$/,
loader: 'url?limit=25000',
include: PATHS.images
}
]
},
devServer:{
historyApiFallback:true
},
plugins:[
new WebpackNotifierPlugin()
]
}