Concept Flow - Serving from multiple directories
Start Express App
Set Static Dir 1
Set Static Dir 2
Client Requests File
Check Dir 1 for File
Yes→Serve File
No
Check Dir 2 for File
Yes→Serve File
No
Send 404 Not Found
Express checks each static directory in order for the requested file and serves it if found; otherwise, it sends a 404 error.