I'm working on a Scala.js cross project where the jvm
folder represents my server application and js
represents my scala.js code.
Whenever i compile my scala.js code via sbt crossJS/fastOptJS
the compiled JS ends up in ./js/target/scala-2.11/web-fastopt.js
.
I need to have this compiled JS file accessible in the resources of the server project in the jvm
folder, so i can server it through my web application. I think i have to do something with artifactPath
but i can't seem to get any results from my experiments thus far.