From 5bc4ca79df8701e8b290284689619277dd3c6625 Mon Sep 17 00:00:00 2001 From: Karol Manijak <20098064+kmanijak@users.noreply.github.com> Date: Tue, 3 Sep 2024 11:11:40 +0200 Subject: [PATCH] Include product-image-interactivity in the main frontend vendor bundle --- plugins/woocommerce-blocks/bin/webpack-configs.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/plugins/woocommerce-blocks/bin/webpack-configs.js b/plugins/woocommerce-blocks/bin/webpack-configs.js index 386db757fc0..532ad61a231 100644 --- a/plugins/woocommerce-blocks/bin/webpack-configs.js +++ b/plugins/woocommerce-blocks/bin/webpack-configs.js @@ -406,8 +406,7 @@ const getFrontConfig = ( options = {} ) => { name: 'wc-blocks-frontend-vendors', chunks: ( chunk ) => { return ( - chunk.name !== 'product-button-interactivity' || - chunk.name !== 'product-image-interactivity' + chunk.name !== 'product-button-interactivity' ); }, enforce: true,