* @param path The relative path to the location of the assets to serve
* @param indexFiles The index files to try if the request is for a directory
* @return A handler
*/
public static Handler assets(LaunchConfig launchConfig, String path, List<String> indexFiles) {
Handler handler = new AssetHandler(copyOf(indexFiles));
return fileSystem(launchConfig, path, handler);
}