#553 - Dynamic settings update

This commit is contained in:
Elio Struyf
2023-09-18 16:51:21 +02:00
parent ac3b4a012b
commit c79d0ee603
9 changed files with 70 additions and 5 deletions

View File

@@ -4,6 +4,7 @@
const path = require('path');
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
const IgnoreDynamicRequire = require('webpack-ignore-dynamic-require');
const config = [
{
@@ -56,7 +57,9 @@ const config = [
}
}
},
plugins: []
plugins: [
new IgnoreDynamicRequire()
]
}
];