how necessary are these lines for the server? ``` ...
# framework-elide
d
how necessary are these lines for the server?
Copy code
tasks.withType<Copy>().named("processResources") {
  dependsOn("copyStatic")
}

tasks.register<Copy>("copyStatic") {
  from("src/main/resources/static/**/*.*")
  into("$buildDir/resources/main/static")
}