Why do I get 404 when trying to serve a js file us...
# ktor
l
Why do I get 404 when trying to serve a js file using:
Copy code
val staticDir = "rest-api/static"
        static("/") {
            staticRootFolder = File(staticDir)
            files("js")
            default("index.html")
        }
GET http://localhost:8080/js/script.js net::ERR_ABORTED 404 (Not Found)
makes no sense adding file("js/script.js","js/script.js") makes it work
had to do
Copy code
files(".")