forked from react-native-elements/react-native-elements
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
42 lines (41 loc) · 1.55 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
const path = require('path');
const webpack = require('webpack');
module.exports = {
entry: './src/index',
output: {
filename: 'bundle.js',
path: path.resolve(__dirname, 'build'),
},
module: {
rules: [
{
test: /\.js$/,
use: ['babel-loader'],
exclude: /node_modules/,
},
{
test: /\.(jpe?g|png|gif)$/i,
use: [
'file-loader?hash=sha512&digest=hex&name=[hash].[ext]',
'image-webpack-loader',
],
},
],
},
externals: {
react: 'react',
'react-native': 'react-native',
'react-native-vector-icons/MaterialIcons': 'react-native-vector-icons/MaterialIcons',
'react-native-vector-icons/FontAwesome': 'react-native-vector-icons/FontAwesome',
'react-native-vector-icons/Zocial': 'react-native-vector-icons/Zocial',
'react-native-vector-icons/Octicons': 'react-native-vector-icons/Octicons',
'react-native-vector-icons/MaterialCommunityIcons': 'react-native-vector-icons/MaterialCommunityIcons',
'react-native-vector-icons/Foundation': 'react-native-vector-icons/Foundation',
'react-native-vector-icons/SimpleLineIcons': 'react-native-vector-icons/SimpleLineIcons',
'react-native-vector-icons/EvilIcons': 'react-native-vector-icons/EvilIcons',
'react-native-vector-icons/Entypo': 'react-native-vector-icons/Entypo',
'react-native-vector-icons/Ionicons': 'react-native-vector-icons/Ionicons',
'react-native-vector-icons/Feather': 'react-native-vector-icons/Feather'
},
plugins: [new webpack.optimize.UglifyJsPlugin()],
};