-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathwebpack.config.js
95 lines (83 loc) · 2.06 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
const { resolve } = require('path');
const webpack = require('webpack');
const UglifyJSPlugin = require('uglifyjs-webpack-plugin');
const OpenBrowserPlugin = require('open-browser-webpack-plugin');
const portNo = 4040;
module.exports = (env, argv) => {
const mutualPlugins = [
new webpack.DefinePlugin({
'NODE_ENV': JSON.stringify(argv.mode), // access NODE_ENV anywhere
})
];
const config = {
context: __dirname,
entry: {
app: [
'babel-polyfill',
'react-hot-loader/patch',
'webpack-dev-server/client?http://localhost:4040/public',
'webpack/hot/only-dev-server',
'./src/main.js'
]
},
output: {
path: resolve(__dirname, 'public'),
filename: 'js/[name].js',
publicPath: '/public/js/'
},
devtool: 'cheap-eval-source-map',
module: {
rules: [
{
enforce: 'pre',
test: /\.js$/,
loader: 'eslint-loader',
exclude: /node_modules/
},
{
test: /\.js?$/,
loader: 'babel-loader'
},
{
test: /\.css$/,
exclude: /node_modules/,
use: ['style-loader', 'css-loader']
}
]
},
plugins: [
...mutualPlugins,
new webpack.HotModuleReplacementPlugin(),
new webpack.NamedModulesPlugin(),
new OpenBrowserPlugin({ url: `http://localhost:${portNo}/public` })
],
resolve: {
extensions: ['.js', '.json', '.jsx'],
modules: [
resolve(__dirname, 'src/'),
resolve(__dirname, 'src/components/'),
resolve(__dirname, 'node_modules/'),
],
},
stats: {
colors: true,
reasons: true,
chunks: true
},
devServer: {
hot: true,
port: portNo,
publicPath: '/public/',
historyApiFallback: true
}
};
if (argv.mode === 'production') {
config.entry = { app: ['babel-polyfill', './src/main.js'] };
config.devtool = false;
config.plugins = [
...mutualPlugins,
new UglifyJSPlugin()
];
}
return config;
};