-
-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathwebpack.config.js
43 lines (40 loc) · 1.13 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
//
// Use the path module so that this will work on Windows systems
//
const path = require('path');
const webpack = require('webpack')
//
// Compile main.js (and its dependencies) into dist/bundle.js.
//
module.exports = (env, argv) => ({
mode: argv.mode || 'development', // Default to development mode
entry: './src/index.js',
output: {
filename: 'bundle.js',
path: path.resolve(__dirname, 'dist'),
},
// Use source maps only in development
devtool: argv.mode === 'development' ? 'eval-source-map' : false,
watch: argv.mode === 'development', // Enable watch only in development
watchOptions: {
ignored: /node_modules/,
poll: 1000, // Check for changes every second
},
optimization: {
moduleIds: 'named', // Makes it easier to debug
},
resolve: {
fallback: {
"crypto": require.resolve("crypto-browserify"),
"buffer": require.resolve("buffer/"),
"stream": require.resolve("stream-browserify"),
"vm": require.resolve("vm-browserify"),
}
},
plugins: [
new webpack.ProvidePlugin({
Buffer: ['buffer', 'Buffer'],
process: 'process/browser.js'
})
]
});