How do I include an external file (in the repo but...
# multiplatform
a
How do I include an external file (in the repo but not in resources) to the JS browser? For the JVM I can use the shadowJar task, what do I use for Kotlin JS?
Copy code
tasks.shadowJar {
    from("foo") {
        into("bar")
    }
}

(I can't find the relevant task which implements CopySpec)