Skip to content

Commit bb2b18d

Browse files
Hari KiranHari Kiran
authored andcommitted
Fix: Added missing craco.config.js file
1 parent dafd150 commit bb2b18d

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

craco.config.js

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
module.exports = {
2+
webpack: {
3+
configure: (webpackConfig) => {
4+
webpackConfig.resolve.fallback = {
5+
...webpackConfig.resolve.fallback,
6+
path: require.resolve("path-browserify"),
7+
};
8+
return webpackConfig;
9+
},
10+
},
11+
};
12+

0 commit comments

Comments
 (0)