Skip to content

Commit

Permalink
chore: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasholzer committed Jun 26, 2024
1 parent 4b127a3 commit bbfecbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/build-info.ts
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ export const mergeSettingsWithCachedConfig = (cachedConfig: $TSFixMe, settings?:
}

const pluginsList = new Set(cachedConfig.config.plugins.map((plugin: { package: string }) => plugin.package))
settings.plugins_recommended.forEach((plugin) => {
settings.plugins_recommended?.forEach((plugin) => {
if (!pluginsList.has(plugin)) {
cachedConfig.config.plugins.push({ package: plugin })
}
Expand Down

0 comments on commit bbfecbe

Please sign in to comment.