Is there's any way for static files to have priori...
# ktor
m
Is there's any way for static files to have priority above other routes? I created a
Copy code
static {
    staticRootFolder = File("/website_static_folder_here/static/")
    files(".")
}
route, and while that does work... it doesn't work if there is any route that uses
/{param}
(in that case that route gets priority, not the static files. The reason I need that is because some files needs to be in the root folder)