mirror of
https://github.com/strapi/strapi.git
synced 2025-09-26 08:52:26 +00:00
fix: webpack dev server wants false not undefined for a non-enabled plugins (#17744)
This commit is contained in:
parent
dc02df8b42
commit
d08e60ce27
@ -67,7 +67,7 @@ module.exports = () => {
|
|||||||
|
|
||||||
plugins: [
|
plugins: [
|
||||||
...config.plugins,
|
...config.plugins,
|
||||||
analyzeBundle && new BundleAnalyzerPlugin(),
|
analyzeBundle === 'true' && new BundleAnalyzerPlugin(),
|
||||||
analyzeDuplicateDependencies === 'true' && new DuplicateReporterPlugin(),
|
analyzeDuplicateDependencies === 'true' && new DuplicateReporterPlugin(),
|
||||||
],
|
],
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user