I'm trying to display images (in a slider imported from slick) from my images folder in React using relative path, but they don't show up on the webpage:
<Slider {...settingsSingle} className='big-slider'>
<img src="client/src/images/Argentina.jpg" alt="" />
</Slider>
They do show up of course when I use a url:
<Slider {...settingsSingle} className='big-slider'>
<img src="https://im.ezgif.com/tmp/ezgif-1-4e915db8f5.jpg" alt='Argentina' />
</Slider>
How can I get the images from my images folder to display using relative path, or is there another way?