I managed to display the Product Image in the customer's Order History by modifying the file
I modified this line:/catalog/view/theme/*/template/account/order_info.twig
By adding:<td class="text-left">{{ product.name }}
It worked correctly. I then wanted to add "{{ option_value.image }}" in this way :<td class="text-left">{{ product.name }}<img src="{{ product.image }}" class="img-thumbnail" />
so that the Product Option Image appears in case it exists but it doesn't work, could someone explain me what I am missing?<small> - {{ option.name }}: {{ option.value }} {{ option_value.image }} </small> {% endfor %}</td>
Thanks for helping me