-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathwebpack.config.js
More file actions
52 lines (45 loc) · 917 Bytes
/
webpack.config.js
File metadata and controls
52 lines (45 loc) · 917 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
45
46
47
48
49
50
51
52
var webpack = require('webpack');
var path = require('path')
module.exports = {
devTool: 'source-map',
entry:[
'./app/main.js'
],
output: {
path: path.resolve('./dist'),
filename: 'bundle.js',
publicPath: '/'
},
plugins:[
new webpack.optimize.OccurenceOrderPlugin(),
new webpack.HotModuleReplacementPlugin(),
new webpack.NoErrorsPlugin()
],
module: {
loaders:[
{
test: /\.js$/,
loader: "babel",
exclude: /node_modules/,
query: {
presets:["react", "es2015"]
}
},
{
test: /\.css$/,
loader: "style!css"
},
{
test : /\.(ttf|eot|svg|woff(2)?)(\?[a-z0-9=&.]+)?$/,
loader : 'file-loader'
},
{
test: /\.(jpe?g|png|gif|svg)$/i,
loaders: [
'file?hash=sha512&digest=hex&name=[hash].[ext]',
'image-webpack?bypassOnDebug&optimizationLevel=7&interlaced=false'
]
}
]
}
}