aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--modern/craco.config.js12
1 files changed, 0 insertions, 12 deletions
diff --git a/modern/craco.config.js b/modern/craco.config.js
deleted file mode 100644
index 32971f24..00000000
--- a/modern/craco.config.js
+++ /dev/null
@@ -1,12 +0,0 @@
-module.exports = {
- webpack: {
- configure: (webpackConfig) => {
- const scopePluginIndex = webpackConfig.resolve.plugins.findIndex(
- ({ constructor }) => constructor && constructor.name === 'ModuleScopePlugin',
- );
-
- webpackConfig.resolve.plugins.splice(scopePluginIndex, 1);
- return webpackConfig;
- },
- },
-};