Hello, I want to serve some static file content an...
# ktor
g
Hello, I want to serve some static file content and the only way I managed it was through this configuration. Is it normal?
Copy code
static("/") {
            staticRootFolder = File("public")
            files("")
            default("index.html")
        }