-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathwebpack.config.js
46 lines (44 loc) · 907 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
var webpack = require('webpack');
var path = require('path');
var OpenBrowserPlugin = require('open-browser-webpack-plugin');
var HtmlWebpackPlugin = require('html-webpack-plugin');
const PATHS = {
app: path.resolve('./src/index.js'),
dist: path.join(__dirname, 'dist')
}
module.exports = {
entry: PATHS.app,
output: {
path: PATHS.dist,
filename: 'bundle.js'
},
devtool: 'eval',
module: {
loaders: [{
test: /\.js$/,
loader: 'babel',
exclude: /node_modules/
},
{
test: /\.json$/,
loader: 'json'
},
{
test: /\.css$/,
loader: 'style!css'
},{
test: /\.png$/,
loader: 'file'
},{
test: /\.csv$/,
loader: 'dsv',
},
]
},
plugins: [
new HtmlWebpackPlugin({
template: 'src/template.html'
}),
new OpenBrowserPlugin({url: 'http://localhost:8080/webpack-dev-server'})
]
}