0

http://localhost:5000/uploads/1648551005076_download.jpg

Error: not found - /uploads/1648551005076_download.jpg below is image so you can understand the folder location

enter image description here

1 Answers1

0

make sure you have added this line to your code

import path from 'path'; 

const __dirname = path.resolve();

app.use(express.static(__dirname + '/uploads'))

then, try like this http://localhost:5000/1648551005076_download.jpg

Tasos K.
  • 7,979
  • 7
  • 39
  • 63