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 new Play 2.4 version, you should use:
@routes.Assets.versioned("an_asset")
instead of:
@routes.Assets.at("an_asset")
But remember to keep this in the routes file:
GET /assets/*file controllers.Assets.versioned(path="/public", file: Asset)