I have been trying adding bootstrap\'s js and css files to public/javascripts and public/stylesheets application in play framework application. I donno why but I get a blan
In the build.sbt file add the following:
build.sbt
resolvers ++= Seq( "webjars" at "http://webjars.github.com/m2" ) libraryDependencies ++= Seq( "org.webjars" %% "webjars-play" % "2.3.0", "org.webjars" % "bootstrap" % "3.0.0" exclude("org.webjars", "jquery"), "org.webjars" % "jquery" % "1.8.3" )