I am building a simple web app displays a panel of information for each item in a database. Part of this information is a picture that I would like to display alongside it.
This code in the panel component used to work fine:
<td>
<img src={require(`../../../assets/images/${props.image_name}.png`)} />
</td>
However, I recently updated my modules and the images are now broken. Is there a new recommended way to do this?