Hello I am trying to deploy my Rails app on heroku and non of my images or videos are showing when I deploy into production
gem 'rails', '~> 6.0.3', '>= 6.0.3.4'
...
gem 'react-rails'
here is a snippet of one of my image files
<Carousel>
<Carousel.Item>
<img src="assets/kevin-ku-w7ZyuGYNpRQ-unsplash.jpg" className="d-block w-100 carousel-img"
alt="first"/>
</Carousel.Item>
</Carousel>
Everything shows up fine in development mode. Is there something I need to do to the asset pipeline before deploying to heroku?