forked from singnet/snet-dapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig-overrides.js
47 lines (44 loc) · 1.6 KB
/
config-overrides.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
const webpack = require("webpack");
const path = require("path");
const { aliasWebpack, configPaths } = require("react-app-alias");
const aliasMap = configPaths("./jsconfig.json");
const options = {
alias: {
...aliasMap,
"@commonComponents": path.resolve(__dirname, "src/assets/thirdPartyServices/common/"),
"@standardComponents": path.resolve(__dirname, "src/assets/thirdPartyServices/standardComponents/"),
"@integratedComponents": path.resolve(__dirname, "src/components/common/"),
"@assets": path.resolve(__dirname, "src/assets"),
"@common": path.resolve(__dirname, "src/components/common"),
"@components": path.resolve(__dirname, "src/components"),
"@config": path.resolve(__dirname, "src/config"),
"@utility": path.resolve(__dirname, "src/utility"),
"@redux": path.resolve(__dirname, "src/Redux"),
},
};
module.exports = function override(config) {
const modifiedConfig = aliasWebpack(options)(config);
const fallback = config.resolve.fallback || {};
Object.assign(fallback, {
os: require.resolve("os-browserify"),
url: require.resolve("url"),
path: require.resolve("path-browserify"),
});
config.resolve.fallback = fallback;
config.plugins = (config.plugins || []).concat([
new webpack.ProvidePlugin({
process: "process/browser",
Buffer: ["buffer", "Buffer"],
}),
]);
config.ignoreWarnings = [/Failed to parse source map/];
config.module.rules.push({
test: /\.(js|mjs|jsx)$/,
enforce: "pre",
loader: require.resolve("source-map-loader"),
resolve: {
fullySpecified: false,
},
});
return modifiedConfig;
};