-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
71 lines (64 loc) · 1.68 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
'use strict';
const NODE_ENV = process.env.NODE_ENV || "development";
const webpack = require('webpack');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const path = require('path');
const config = {
context: path.resolve(__dirname, 'src'),
entry: {
main: ((files) => (NODE_ENV != "production" ? [
'react-hot-loader/patch',
// activate HMR for React
'webpack/hot/only-dev-server',
// bundle the client for hot reloading
// only- means to only hot reload for successful updates
] : []).concat(files))(['./js/index'])
},
output: {
path: path.resolve(__dirname, 'public'),
publicPath: '/',
filename: 'assets/js/[name].bundle.js'
},
resolve: {
extensions: [".js", ".jsx", ".json"]
},
module: {
rules: [
{
enforce: "pre",
test: /\.jsx?$/,
use: 'eslint-loader',
exclude: /node_modules/
},
{
test: /\.jsx?$/,
use: 'babel-loader',
exclude: /node_modules/
},
{
test: /\.css$/,
use: ['style-loader', 'css-loader']
}
]
},
plugins: [
new webpack.NoEmitOnErrorsPlugin(),
new HtmlWebpackPlugin({template: 'index.html'}),
new webpack.NamedModulesPlugin(),
// prints more readable module names in the browser console on HMR updates
new webpack.DefinePlugin({
__DEV__: JSON.stringify(NODE_ENV != "production")
})
],
devServer: {
contentBase: path.join(__dirname, "public"),
compress: true,
port: 8089,
publicPath: '/',
hot: NODE_ENV != "production"
}
};
if (NODE_ENV != "production") {
config.plugins.push(new webpack.HotModuleReplacementPlugin());
}
module.exports = config;