DEV Community

Cover image for Add images to a React project with Typescript
AlessandroMinoccheri
AlessandroMinoccheri

Posted on • Originally published at minompi.Medium

Add images to a React project with Typescript

In every single project, usually, you need to add an image to your React project to show something or to represent a graph and create a beautiful page for your audience.

Adding an image with React is very simple and fast, this is an example:

import React from "react";
import imageToAdd from "./../assets/images/logo.png";
function YourComponent() {
   return <img src={imageToAdd} alt="Image" />;
}
export default YourComponent;
Enter fullscreen mode Exit fullscreen mode

This works like a charm in a React project built using CRA or Vite.
but if your project has a custom bundler, created using Typescript + Webpack, with the code above you will receive this error:

Cannot find module  './../assets/images/logo.png'
Enter fullscreen mode Exit fullscreen mode

The first time I saw that error, I thought “It’s a bug!”, but after searching and understanding typescript well, I discovered that receiving an error is the correct behavior.

By default in typescript, the module resolution resolves the import using only the files with extension: .ts .tsx or .d.ts and this is the reason why in the previous case the module couldn't be found.

So, how can we fix the problem?
To solve the problem, usually, you have to:

  1. add a directory called types on your project's root

  2. create inside of that folder a file called index.d.ts with the following content

declare module "*.jpg";
declare module "*.png";
Enter fullscreen mode Exit fullscreen mode

N.B. the extension depends on the file type you are adding.

  1. install the file-loader dependence using npm, yarn or pnpm
npm install --save-dev file-loader
Enter fullscreen mode Exit fullscreen mode
  1. update your webpack config file to use the file-loader module like this
...
{ test: /\\.(png|jp(e*)g|svg|gif)$/, use: ['file-loader'], }
...
Enter fullscreen mode Exit fullscreen mode

Then, you can run your application, your build will succeed and your image will appear! 🎩

Top comments (6)

Collapse
 
minompi profile image
AlessandroMinoccheri

Thanks @lukeshiru I agree with you!

Collapse
 
niki228041 profile image
cho

after { test: / one '\' - not needed

Collapse
 
seanfrisbey profile image
Sean Frisbey

@minompi, please make the change tot he example code to reflect this. Broken otherwise.

 
nodejsdeveloperskh profile image
node.js.developers.kh • Edited

Thanks. I found the issue. In my Vite project I was extending another tsconfig in my main tsconfig - something like this: "extends": "../../tsconfig.json" and IDK why but then TSC was confused and could not find image files. After removing the extends it just came to its senses and worked. Do you have any idea on what was wrong with it?

Here you can see what I meant: github.com/kasir-barati/ts-boilerp...

Collapse
 
nodejsdeveloperskh profile image
node.js.developers.kh

Not gonna work for me I think:

Duplicate identifier 'path'.ts(2300)
client.d.ts(107, 18): 'path' was also declared here.
client.d.ts(111, 18): and here.
client.d.ts(131, 18): and here.
client.d.ts(103, 18): and here.
Enter fullscreen mode Exit fullscreen mode

./src/vite-env.d.ts

/// <reference types="vite/client" />

declare module '*.jpg' {
    const path: string;
    export default path;
}
declare module '*.jpeg' {
    const path: string;
    export default path;
}
declare module '*.svg' {
    const path: string;
    export default path;
}
declare module '*.png' {
    const path: string;
    export default path;
}
Enter fullscreen mode Exit fullscreen mode
Collapse
 
mirescordeiro profile image
Tamires Cordeiro

What a short and efficient article!
I just preferred to call the file custom.d.ts.
Thanks