-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
73 lines (68 loc) · 1.97 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
const path = require('path')
const webpack = require('webpack')
const HtmlWebpackPlugin = require('html-webpack-plugin')
const argv = require('yargs').argv
const port = argv.port || 3000
module.exports = {
entry: [
'react-hot-loader/patch',
`webpack-dev-server/client?http://localhost:${port}`,
'webpack/hot/only-dev-server',
'./src/index'
],
output: {
filename: 'bundle.js',
path: path.resolve(__dirname, 'dist'),
publicPath: '/'
// necessary for HMR to know where to load the hot update chunks
},
devtool: 'inline-source-map',
plugins: [
new HtmlWebpackPlugin({
template: 'index.template.ejs',
inject: 'body'
}),
new webpack.HotModuleReplacementPlugin(),
new webpack.NamedModulesPlugin(),
new webpack.NoEmitOnErrorsPlugin()
],
module: {
rules: [
{
test: /\.jsx?$/,
include: path.resolve(__dirname, './src'),
use: {
loader: 'babel-loader'
},
},
{
test: /\.css$/,
include: path.resolve(__dirname, './src'),
use: [
{
loader: 'style-loader',
},
{
loader: 'css-loader',
options: {
importLoader: 1,
modules: true,
localIdentName: '[path]___[name]__[local]___[hash:base64:5]'
}
},
{
loader: 'postcss-loader'
}
]
}
]
},
devServer: {
host: 'localhost',
port: port,
historyApiFallback: true,
// respond to 404s with index.html
hot: true,
// enable HMR on the server
}
}