Is there anyway Express in Node.js can have more than one static folder? Is there anyway Express in Node.js can have more than one static folder? express express

Is there anyway Express in Node.js can have more than one static folder?


this.use(express.static(__dirname + '/public1'));this.use(express.static(__dirname + '/public2'));

The first one will have priority with regards to filenames.