When I request "/home" and specify that home.html should be served, I want to define the location from which all the resources included in home.html should be retrieved. For instance, if my file system looks like this:
-public
-home.html
-home
-src
and I store all the resources used by home.html inside the src folder, I don't want the route to navigate into the home folder when GET /home is requested. Instead, I would like the route to start in public and then access src/file.js to serve it, rather than looking for /home/src/file.js. If this is not feasible, I need suggestions on how to better organize the files so that I can easily serve them as needed.