[Vuejs]-MEVN Stack. Linking to Uploaded Images

0👍

In your express.js logic you should expose your public folder

app.use('/public', express.static(`${__dirname}/public/`));

I’m supposing your express entry point is in the same backend folder as ‘/public/ folder.

And then you can just access it like you’ve tried before on: http://localhost:5000/public/image/imagename

Leave a comment