-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig-overrides.js
More file actions
40 lines (34 loc) · 912 Bytes
/
config-overrides.js
File metadata and controls
40 lines (34 loc) · 912 Bytes
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
const webpack = require('webpack');
module.exports = function override(config, env) {
config.resolve.fallback = {
fs: false,
path: false,
constants: false,
browser: false,
...config.resolve.fallback
}
config.resolve.alias = {
assert: 'assert',
buffer: 'buffer',
os: 'os-browserify/browser',
crypto: 'crypto-browserify',
stream: 'stream-browserify',
process: 'process/browser.js',
http: 'stream-http',
https: 'https-browserify',
util: 'util',
...config.resolve.alias
}
config.experiments = {
asyncWebAssembly: true,
...config.experiments
}
config.plugins = [
new webpack.ProvidePlugin({
process: "process/browser.js",
Buffer: ['buffer', 'Buffer']
}),
...config.plugins
]
return config;
}