-
Notifications
You must be signed in to change notification settings - Fork 16
/
webpack.config.js
71 lines (69 loc) · 2.34 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
const UglifyJsPlugin = require('uglifyjs-webpack-plugin');
const CopyWebpackPlugin = require('copy-webpack-plugin');
module.exports = {
entry: __dirname + '/archive.js',
module: {
rules: [
{
test: /\.js[x]*$/,
exclude: /(node_modules\/[a-z]|@[a-hj-z]|bower_components)/, //TODO-IAUX only trying to not-exclude @internetarchive
use: {
loader: 'babel-loader',
options: {
presets: ['@babel/preset-react', '@babel/preset-env'],
}
}
}
]
},
node: {
//I copied this section from someone else's version that worked for WebTorrent, definately need fs, unclear if need others.
//global: true,
crypto: 'empty',
fs: 'empty',
process: true,
module: false,
clearImmediate: false,
setImmediate: false,
console: false
},
optimization: {
minimizer: [
new UglifyJsPlugin({
sourceMap: true,
uglifyOptions: {
compress: {
unused: false,
collapse_vars: false // debug has a problem in production without this.
}
//compress: false or alternatively remove compression, it only makes about a 5% difference
}
})
]
},
output: {
filename: 'dweb-archive-bundle.js',
path: __dirname + '/dist'
},
//plugins: [HTMLWebpackPluginConfig]
plugins: [
new CopyWebpackPlugin(
[
{ from: 'archive.html', to: './' },
{ from: 'archivesw.html', to: './' },
{ from: 'dweb-archive-styles.css', to: './'},
{ from: 'images/', to: 'images/'},
{ from: 'ia-components/sandbox/languages/json/', to: 'languages/' },
{ from: 'includes/archive*css', to: './'},
{ from: 'includes/.+[css]', to: './'},
{ from: 'includes/archive.*js', to: './'},
{ from: 'includes/archive.*js.map', to: './'},
],
{ }
)
],
resolve: {
extensions: ['.js', '.jsx']
},
devtool: 'source-map'
};