-
Notifications
You must be signed in to change notification settings - Fork 12
/
webpack.config.js
50 lines (42 loc) · 1.05 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
const { resolve } = require('path')
const webpack = require('webpack')
const dev = process.env.NODE_ENV !== 'production'
module.exports = {
devtool: 'eval',
entry: dev ? ['react-hot-loader/patch', 'webpack-dev-server/client?http://localhost:8080', 'webpack/hot/only-dev-server', './'] : ['./'],
output: dev ? {
filename: 'bundle.js',
publicPath: '/'
} : {
library: 'ReactFlexbox',
libraryTarget: 'umd',
},
externals: dev ? {} : {
'react': 'React',
'react-dom': 'ReactDOM',
'prop-types': 'PropTypes',
},
devServer: {
hot: true,
contentBase: resolve(__dirname, 'examples'),
publicPath: '/'
},
resolve: {
extensions: ['.js','.jsx'],
modules: [
resolve(__dirname, "src"),
"node_modules"
],
},
module: {
rules: [
{ test: /\.(js|jsx)$/, exclude: /node_modules/, loader: "babel-loader" },
]
},
plugins: dev ? [
new webpack.HotModuleReplacementPlugin(),
new webpack.NamedModulesPlugin()
] : [
// new webpack.optimize.UglifyJsPlugin({ minimize: true })
]
}