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
|
// @flow
/* eslint-disable import/no-extraneous-dependencies */
const path = require('path')
const webpack = require('webpack')
const CompressionPlugin = require('compression-webpack-plugin')
module.exports = {
productionPlugins: [
new webpack.optimize.AggressiveMergingPlugin(),
new webpack.optimize.UglifyJsPlugin({
mangle: true,
compress: {
warnings: false, // Suppress uglification warnings
pure_getters: true,
unsafe: true,
unsafe_comps: true,
screw_ie8: true,
},
output: {
comments: false,
},
sourceMap: false,
exclude: [/\.min\.js$/gi], // skip pre-minified libs
}),
new CompressionPlugin({
asset: '[path].gz[query]',
algorithm: 'zopfli',
test: /\.js$|\.css$|\.html$/,
threshold: 10240,
minRatio: 0.8,
}),
],
loaders: [
{
test: /\.ttf$/,
loader: 'url-loader',
include: path.resolve(__dirname, '../node_modules/react-native-vector-icons'),
},
{
test: /\.json$/,
loader: 'json-loader',
},
{
// Many react-native libraries do not compile their ES6 JS.
test: /\.js$/,
include: /node_modules\/react-native-/,
// react-native-web is already compiled.
exclude: /node_modules\/react-native-web\//,
loader: 'babel-loader',
query: { cacheDirectory: true },
},
{
test: /\.(gif|jpe?g|png|svg)$/,
loader: 'url-loader?limit=8192',
query: { name: 'images/[name]-[hash:16].[ext]' },
},
{
test: /\.(mp3|wav)$/,
loader: 'file-loader',
query: { name: 'sounds/[name]-[hash:16].[ext]' },
},
],
}
|