forked from orbitdb-archive/ipfs-log
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.example.config.js
59 lines (56 loc) · 1.16 KB
/
webpack.example.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
'use strict'
const Uglify = require('uglifyjs-webpack-plugin')
const path = require('path')
const uglifyOptions = {
uglifyOptions: {
mangle: false,
},
}
module.exports = {
entry: './examples/browser/index.js',
output: {
filename: './examples/browser/bundle.js'
},
target: 'web',
node: {
console: false,
process: 'mock',
Buffer: true
},
plugins: [
new Uglify(uglifyOptions),
],
externals: {
fs: '{}',
},
resolve: {
modules: [
'node_modules',
path.resolve(__dirname, '../node_modules')
],
alias: {
// These are needed because node-libs-browser depends on outdated
// versions
//
// Can be dropped once https://github.com/devongovett/browserify-zlib/pull/18
// is shipped
zlib: 'browserify-zlib',
// Can be dropped once https://github.com/webpack/node-libs-browser/pull/41
// is shipped
http: 'stream-http',
}
},
resolveLoader: {
modules: [
'node_modules',
path.resolve(__dirname, '../node_modules')
],
moduleExtensions: ['-loader']
},
module: {
rules: [{
test: /\.json$/,
loader: 'json-loader'
}]
}
}