-
Notifications
You must be signed in to change notification settings - Fork 3
/
webpack.config.js
103 lines (99 loc) · 2.29 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
96
97
98
99
100
101
102
103
const path = require('path')
const nodeExternals = require('webpack-node-externals')
const DotEnvPlugin = require('dotenv-webpack')
const StartServerPlugin = require('start-server-webpack-plugin')
const CopyWebpackPlugin = require('copy-webpack-plugin')
const {
BannerPlugin,
NamedModulesPlugin,
HotModuleReplacementPlugin,
NoEmitOnErrorsPlugin
} = require('webpack')
module.exports = [
// Build once
{
entry: './src/index.js',
name: 'digest',
output: {
path: path.join(__dirname, 'build'),
filename: 'index.js'
},
node: {
__filename: true,
__dirname: true
},
target: 'node',
devtool: 'source-map',
externals: [
nodeExternals()
],
module: {
rules: [
{
test: /\.js$/,
exclude: /node_modules/,
use: 'babel-loader'
}
]
},
plugins: [
new DotEnvPlugin({ safe: true, systemvars: true }),
new BannerPlugin({
banner: 'require("source-map-support").install();',
raw: true,
entryOnly: false
}),
new CopyWebpackPlugin([
{ from: 'src/resources', to: path.join(__dirname, 'build', 'resources'), force: true }
])
]
},
// Watch for changes and hot reload
{
entry: [
'webpack/hot/poll?1000',
'./src/index.js'
],
name: 'watch',
watch: true,
output: {
path: path.join(__dirname, 'build'),
filename: 'index.js'
},
node: {
__filename: true,
__dirname: true
},
target: 'node',
devtool: 'source-map',
externals: [
nodeExternals({
whitelist: ['webpack/hot/poll?1000']
})
],
module: {
rules: [
{
test: /\.js$/,
exclude: /node_modules/,
use: 'babel-loader'
}
]
},
plugins: [
new DotEnvPlugin({ safe: true, systemvars: true }),
new StartServerPlugin('index.js'),
new NamedModulesPlugin(),
new HotModuleReplacementPlugin(),
new NoEmitOnErrorsPlugin(),
new BannerPlugin({
banner: 'require("source-map-support").install();',
raw: true,
entryOnly: false
}),
new CopyWebpackPlugin([
{ from: 'src/resources', to: path.join(__dirname, 'build', 'resources'), force: true }
])
]
}
]