-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathconfig-overrides.js
More file actions
28 lines (26 loc) · 814 Bytes
/
config-overrides.js
File metadata and controls
28 lines (26 loc) · 814 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
const webpack = require("webpack")
module.exports = function override(config) {
const fallback = config.resolve.fallback || {}
Object.assign(fallback, {
fs: false,
net: false,
tls: false,
crypto: require.resolve("./node_modules/crypto-browserify"),
stream: require.resolve("stream-browserify"),
})
config.resolve.fallback = fallback
config.plugins = (config.plugins || []).concat([
new webpack.ProvidePlugin({
process: "process/browser",
Buffer: ["buffer", "Buffer"],
}),
])
config.module.rules.unshift({
test: /\.m?js$/,
resolve: {
fullySpecified: false, // disable the behavior
},
})
config.ignoreWarnings = [/Failed to parse source map/]
return config
}