Magento 2 Change Minicart Product Image from thumbnail to regular image

We can edit view.xml in the below path app/design/{Package}/{Theme-name}/etc/view.xml add the below code in it <image id=”mini_cart_product_image” type=”image”> <width>100</width> <height>100</height> </image> you can change the image type and width/height as per your need type – It means what type of image should display in the respective places in the frontend. Explanation: image – corresponds to the… Continue reading Magento 2 Change Minicart Product Image from thumbnail to regular image