Right now i want to make a node.js use express.js that can use a path for the website.
app.use('/upload', express.static(path.resolve('./upload')));
app.use('/static', express.static(path.resolve('./public')));
I use those two to make path to the website. with upload and public have a diffrence .html. The problem is only the public one work and the upload not. Is using app.use like this is possible?