You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 30, 2021. It is now read-only.
Serving images from 'public/images' folder does not work.
only after changing express.js to
// Setting the app router and static folderapp.use(express.static(path.resolve('./public')));app.use('/public',express.static(path.resolve('./public')));//<--new line added
Serving images from 'public/images' folder does not work.
only after changing express.js to