Answer the question
In order to leave comments, you need to log in
Why doesn't express show pictures?
I give the static like this:
app.use('/add', express.static(__dirname + '/front-end/add.html'));
Answer the question
In order to leave comments, you need to log in
Because it gives 404 to your pictures, because the only static it knows (based on your piece of code) is /front-end/add.html
If the pictures are in a separate folder, it makes sense to set express.static on them as well
Or so
app.use('/images',express.static(__dirname + '/front-end/images'));
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question