route

abstract suspend fun route(pattern: String, handler: suspend (Route) -> Unit)

Routes requests matching a glob pattern, such as one selecting every png, jpg and woff2 under any path.

The handler runs off the main thread for every matching resource and must be cheap: a slow handler stalls page loads. Aborting images, fonts and media is the single largest saving this library offers, and it needs no protocol at all.