This repository has been archived by the owner on Mar 30, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
webpack.config.prod.js
69 lines (68 loc) · 2.18 KB
/
webpack.config.prod.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
/* eslint-disable */
var webpack = require('webpack');
var path = require("path"),
CopyWebpackPlugin = require('copy-webpack-plugin');
module.exports = {
entry: {
// babelPolyfill: 'babel-polyfill',
controller: path.resolve(__dirname, "./src/main/webapp/js/controller.js"),
app: path.resolve(__dirname, "./src/main/webapp/js/app.jsx")
},
output: {
path: path.resolve(__dirname, "./target/static"),
filename: "[name].bundle.js"
},
devtool: 'source-map',
module: {
preLoaders: [
{ test: /\.jsx?$/, loader: 'eslint', exclude: /node_modules/ }
],
loaders: [
{ test: /\.css$/, loader: "style!css" },
{ test: /\.less$/, loader: "style!css!less" },
{
test: /\.jsx?$/,
exclude: /node_modules/,
loader: 'babel',
query: {
presets: ['react', 'es2015'],
plugins: ['transform-object-rest-spread'],
}
},
{ test: /\.(jpe?g|png|gif|svg)$/i, loader: 'url?progressive=true' },
{ test: /\.(woff|woff2)(\?v=\d+\.\d+\.\d+)?$/, loader: 'url?mimetype=application/font-woff' },
{ test: /\.ttf(\?v=\d+\.\d+\.\d+)?$/, loader: 'url?mimetype=application/octet-stream' },
{ test: /\.eot(\?v=\d+\.\d+\.\d+)?$/, loader: 'file' },
{ test: /\.svg(\?v=\d+\.\d+\.\d+)?$/, loader: 'url?mimetype=image/svg+xml' }
]
},
resolve: {
extensions: ['', '.js', '.jsx']
},
eslint: {
configFile: './.eslintrc',
failOnWarning: false,
failOnError: true,
},
plugins: [
new webpack.DefinePlugin({
'process.env.NODE_ENV': JSON.stringify('production'), // Tells React to build in either dev or prod modes. https://facebook.github.io/react/downloads.html (See bottom)
__DEV__: false
}),
new CopyWebpackPlugin([{
from: './src/main/webapp/html/app.html'
}]),
new CopyWebpackPlugin([{
from: './src/main/webapp/html/controller.html'
}]),
new CopyWebpackPlugin([{
from: './src/main/webapp/bundle.json'
}]),
new CopyWebpackPlugin([{
from: './src/main/webapp/img', to: 'img'
}]),
new webpack.optimize.DedupePlugin(),
new webpack.optimize.UglifyJsPlugin(),
new webpack.optimize.AggressiveMergingPlugin()
]
};