From 4a3eb1880f2c3a98fe2b063862c6e67ec1c9ce6a Mon Sep 17 00:00:00 2001 From: Michal Piechowiak Date: Mon, 19 Aug 2024 16:12:29 +0200 Subject: [PATCH] fix: apply default origin to plugins provided by plugin detection (#6781) --- src/utils/build-info.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/build-info.ts b/src/utils/build-info.ts index 32aef3900c2..c4836da344f 100644 --- a/src/utils/build-info.ts +++ b/src/utils/build-info.ts @@ -147,7 +147,7 @@ export const getDefaultConfig = (settings?: Settings): $TSFixMe | undefined => { config.build.publishOrigin = 'default' } - config.plugins = settings.plugins_recommended?.map((plugin) => ({ package: plugin })) || [] + config.plugins = settings.plugins_recommended?.map((plugin) => ({ package: plugin, origin: 'default' })) || [] return config }