We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8091e0c commit 17f0ee9Copy full SHA for 17f0ee9
craco.config.js
@@ -5,6 +5,13 @@ module.exports = {
5
...webpackConfig.resolve.fallback,
6
path: require.resolve("path-browserify"),
7
};
8
+
9
+ webpackConfig.module.rules.push({
10
+ test: /\.js$/,
11
+ parser: {
12
+ requireEnsure: false, // Prevents Webpack from complaining about dynamic requires
13
+ },
14
+ });
15
return webpackConfig;
16
},
17
0 commit comments