-
Notifications
You must be signed in to change notification settings - Fork 35
/
webpack.config.js
57 lines (54 loc) · 1.79 KB
/
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
47
48
49
50
51
52
53
54
55
56
const path = require('path');
const debug = process.env.NODE_ENV !== "production";
const webpack = require('webpack');
module.exports = {
context: __dirname,
entry: [
'babel-polyfill',
"./src/main/script/Index.js"
],
output: {
path: __dirname + "/build/resources/main/static/script/",
filename: "bundle.js"
},
module: {
loaders: [
{ test: /\.css$/, exclude: '/node_modules/', loader: 'style-loader!css-loader' },
{ test: /\.(js|jsx|es6)$/, exclude: /node_modules/, loader: 'babel-loader',
query: {
plugins: ['transform-runtime'],
presets: ['react', 'stage-2', "env"]
}
},
{ test: /\.(woff|woff2)(\?v=\d+\.\d+\.\d+)?$/, loader: 'url-loader?limit=10000&mimetype=application/font-woff'},
{ test: /\.ttf(\?v=\d+\.\d+\.\d+)?$/, loader: 'url-loader?limit=10000&mimetype=application/octet-stream'},
{ test: /\.eot(\?v=\d+\.\d+\.\d+)?$/, loader: 'file-loader'},
{ test: /\.svg(\?v=\d+\.\d+\.\d+)?$/, loader: 'url-loader?limit=10000&mimetype=image/svg+xml'}
]
},
resolve: {
modules: [
path.join(__dirname, `node_modules`),
path.join("./src/main/script/Index.js")
],
extensions: [`.js`, `.jsx`]
},
plugins: debug ? [] : [
new webpack.optimize.UglifyJsPlugin({
mangle: false,
sourcemap: false,
compress: {
warnings: false,
screw_ie8: true,
conditionals: true,
unused: true,
comparisons: true,
sequences: true,
dead_code: true,
evaluate: true,
if_return: true,
join_vars: true,
}
})
],
};