-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathwebpack.prod.config.js
73 lines (70 loc) · 1.99 KB
/
webpack.prod.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
'use strict';
const webpack = require('webpack');
const path = require('path');
const ExtractTextPlugin = require('extract-text-webpack-plugin');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const config = {
devtool: 'cheap-module-source-map',
entry: [
path.resolve(__dirname, 'frontend/index.jsx')
],
module: {
loaders: [
{
test: /\.jsx?$/,
loader: 'babel-loader',
include: path.resolve(__dirname, 'frontend'),
exclude: '/node_modules/',
query: {
presets: ['es2015', 'react']
}
},
{
test: /\.css$/,
loader: ExtractTextPlugin.extract('style-loader', 'css-loader')
},
{
test: /\.(eot|svg|ttf|woff|woff2)$/,
exclude: '/node_modules/',
loader: 'file?name=fonts/[name].[ext]'
},
{
test: /\.(png)$/,
exclude: '/node_modules/',
loader: 'file?name=themes/default/assets/images/[name].[ext]'
}
]
},
output: {
path: path.resolve(__dirname, 'public'),
filename: 'bundle.js'
},
resolve: {
extensions: ['', '.js', '.jsx', '.css']
},
plugins: [
new webpack.DefinePlugin({
'process.env': {
NODE_ENV: JSON.stringify('production')
}
}),
new ExtractTextPlugin('bundle.css'),
new webpack.optimize.UglifyJsPlugin({
beautify: false,
mangle: {
screw_ie8: true,
keep_fnames: true
},
compress: {
warnings: false,
screw_ie8: true
},
comments: false
}),
new HtmlWebpackPlugin({
template: 'frontend/index.html',
hash: true
})
]
};
module.exports = config;