-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebpack.config.js
More file actions
executable file
·43 lines (41 loc) · 867 Bytes
/
webpack.config.js
File metadata and controls
executable file
·43 lines (41 loc) · 867 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
var path = require('path');
var webpack = require('webpack');
var HtmlWebpackPlugin = require('html-webpack-plugin');
var loaders = [
{
"test": /\.js?$/,
"exclude": /node_modules/,
"loader": "babel",
"query": {
"presets": [
"es2015",
"react",
"stage-0"
],
"plugins": []
}
},
{
test: /\.(png|jpg)$/,
loader: 'url-loader?limit=8192'
} // inline base64 URLs for <=8k images, direct URLs for the rest
];
module.exports = {
devtool: 'eval-source-map',
entry: path.resolve('src', 'App.js'),
output: {
path: path.resolve('build'),
filename: '[name].js',
publicPath: '/'
},
plugins: [
new HtmlWebpackPlugin({
template: path.resolve('src', 'index.tpl.html'),
inject: 'body',
filename: 'index.html'
})
],
module: {
loaders: loaders
}
};