Hello, how do you guys solve these errors? Intelli...
# server
m
Hello, how do you guys solve these errors? IntelliJ in my Ktor backend project is complaining in my templates that a certain file doesn't exist but it does. Just suppress? If yes, how to suppress? IntelliJ only suggests suppressing ALL.
a
Did you register the static directories location in routing?
Copy code
static("/static") {
    resources("static")
}