-
Notifications
You must be signed in to change notification settings - Fork 43
/
webpack.config.js
38 lines (35 loc) · 978 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
const path = require('path')
const HTMLWebpackPlugin = require('html-webpack-plugin')
const HTMLWebpackPluginConfig = new HTMLWebpackPlugin({
template: './app/index.html',
filename: 'index.html',
inject: 'body',
favicon: './app/img/favicon.ico'
})
const ExtractTextPlugin = require('extract-text-webpack-plugin')
const ExtractTextPluginConfig = new ExtractTextPlugin({
filename: 'bundle.css',
disable: false,
allChunks: true
})
module.exports = {
entry: './app/index.js',
output: {
path: path.resolve('dist'),
filename: 'index_bundle.js'
},
module: {
loaders: [
{ test: /\.js$/, loader: 'babel-loader', exclude: /node_modules/ },
{
test: /\.css$/,
loader: ExtractTextPluginConfig.extract({
fallback: 'style-loader',
use: 'css-loader'
})
},
{ test: /\.(png|jpg)$/, loader: 'url-loader?limit=8192' }
]
},
plugins: [HTMLWebpackPluginConfig, ExtractTextPluginConfig]
}