-
Notifications
You must be signed in to change notification settings - Fork 81
/
Copy pathwebpack.config.js
67 lines (65 loc) · 1.81 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
const webpack = require('webpack')
const path = require('path')
const CopyPlugin = require('copy-webpack-plugin')
const config = {
mode: 'production',
entry: path.resolve(__dirname, './index.js'),
output: {
path: path.resolve(__dirname, './public'),
filename: './index.js'
},
resolve: {
fallback: {
zlib: require.resolve('browserify-zlib'),
stream: require.resolve('stream-browserify'),
buffer: require.resolve('buffer/'),
events: require.resolve('events/'),
assert: require.resolve('assert/')
}
},
plugins: [
// fix "process is not defined" error:
new webpack.ProvidePlugin({
process: 'process/browser'
}),
new webpack.ProvidePlugin({
Buffer: ['buffer', 'Buffer']
}),
new webpack.NormalModuleReplacementPlugin(
/prismarine-viewer[/|\\]viewer[/|\\]lib[/|\\]utils/,
'./utils.web.js'
),
new CopyPlugin({
patterns: [
{ from: '../../public/blocksStates/', to: './blocksStates/' },
{ from: '../../public/textures/*.png', to: './textures/' },
{ from: '../../public/worker.js', to: './' },
]
})
],
devServer: {
contentBase: path.resolve(__dirname, './public'),
compress: true,
inline: true,
// open: true,
hot: true,
watchOptions: {
ignored: /node_modules/
}
},
externals: [
// This removes some large unnecessary data from the bundle
function (req, cb) {
if (req.context.includes('minecraft-data') && req.request.endsWith('.json')) {
const fileName = req.request.split('/').pop().replace('.json', '')
const blocked = ['blocksB2J', 'blocksJ2B', 'blockMappings', 'steve', 'recipes']
if (blocked.includes(fileName)) {
cb(null, [])
return
}
}
cb()
}
]
}
module.exports = config