I\'m just trying to get setup with node.js/express/ejs. I know ejs isn\'t actual HTML and so I\'m having a hard time just displaying a simple image. Can someone point me in the
You have to assign app.use( express.static( "public" ) ); on app.js then don't forget the / as root:
app.use( express.static( "public" ) );
the images folder should be in public folder:
- public/ - images/ - logo.png - app.js