Brojd/plugin fixes (#3947)

## Which issue(s) this PR fixes
- use correct webpack merge strategy
- 
## Checklist

- [x] Unit, integration, and e2e (if applicable) tests updated
- [x] Documentation added (or `pr:no public docs` PR label added if not
required)
- [x] `CHANGELOG.md` updated (or `pr:no changelog` PR label added if not
required)
This commit is contained in:
Dominik Broj 2024-02-22 15:17:50 +01:00 committed by GitHub
parent 8ccd7c26f0
commit 8fe2b22f5d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -46,10 +46,10 @@ const config = async (env): Promise<Configuration> => {
use: CustomizeRule.Merge,
},
},
plugins: CustomizeRule.Replace,
watchOptions: {
use: CustomizeRule.Merge,
},
plugins: CustomizeRule.Merge,
})(baseConfig, customConfig);
};