I'm trying to get Scala.js working with the bootstrap library. Adding the js file was easy and straight forward:
jsDependencies +="org.webjars" % "bootstrap" % "3.3.7-1" / "bootstrap.js" minified "bootstrap.min.js"
But now I've problems to add the bootstrap.css file. I tried this line:
"org.webjars" % "bootstrap" % "3.3.7-1" / "bootstrap.css" minified "bootstrap.min.css"
But adding a css file to the jsDependencies doesn't seem to work:
[error] (frontend/compile:resolvedJSDependencies) org.scalajs.core.tools.jsdep.JSLibResolveException: Some references to JS libraries could not be resolved:
[error] - Missing JS library: bootstrap.min.css
[error] originating from: frontend:compile
[error] - Missing JS library: bootstrap.css
[error] originating from: frontend:compile
Can anybody tell me how to get this working properly?