From 8fe2b22f5d41e58f0db409a371930d221d61eb05 Mon Sep 17 00:00:00 2001 From: Dominik Broj Date: Thu, 22 Feb 2024 15:17:50 +0100 Subject: [PATCH] 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) --- grafana-plugin/webpack.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grafana-plugin/webpack.config.ts b/grafana-plugin/webpack.config.ts index 4965462b..36618df4 100644 --- a/grafana-plugin/webpack.config.ts +++ b/grafana-plugin/webpack.config.ts @@ -46,10 +46,10 @@ const config = async (env): Promise => { use: CustomizeRule.Merge, }, }, - plugins: CustomizeRule.Replace, watchOptions: { use: CustomizeRule.Merge, }, + plugins: CustomizeRule.Merge, })(baseConfig, customConfig); };