I’m creating an app using **reactjs **and **typescript **however I encountered an issue while loading **images **inside a component.
My error in console
JavaScript
x
3
1
Uncaught Error: Cannot find module '../images/test.png'
2
at webpackEmptyContext
3
This is my component:
JavaScript
1
21
21
1
import { IProject } from '../interfaces/IProject'
2
import pin from '../svgs/pin.svg'
3
4
function Project(props: { project: IProject }) {
5
const project = props.project
6
7
return (
8
<>
9
<div className='project'>
10
<img className='pin' src={pin} alt='pin' />
11
<div>
12
<img alt='project gif' src={require(project.image)} />
13
<span>{project.title}</span>
14
</div>
15
</div>
16
</>
17
)
18
}
19
20
export default Project
21
NB : The images are stored inside a ‘images’ folder and the project component is stored inside a ‘components’ folder **NB#2 : **the first image ‘pin’ loads normally.
Thank you for all the help ~ sorry if this a nooby question.
I tried
- replacing
(project.image)
with('../images/test.png')
and it works if I do that but I want to be able to display the image src passed by the props. - for testing purposes, I added a
const projectImage = '../images/test.png
and replacingrequire(project.image)
withrequire(projectImage)
and it doesn’t work - I created index.d.ts file (according to solutions I found on the internet) and added
declare module '*.jpg'
and the same thing for jpeg and png. It didn’t fix my issue - changing the path of the image
- I also installed file-loader
Advertisement
Answer
update variable value to contain only the name like this
JavaScript
1
2
1
project.image = 'test.png'
2
then add the relative path
JavaScript
1
2
1
require(`../images/${project.image}`)
2