How to integrate Sass and Play 2.3?

前端 未结 3 2104
予麋鹿
予麋鹿 2021-02-14 17:15

Is it possible to integrate Sass and Play Framework 2.3, so that Sass gets compiled to CSS? If so, how should I go about it? I\'ve tried the play-sass plugin, but it doesn\'t bu

3条回答
  •  时光取名叫无心
    2021-02-14 17:43

    I could install the sass plugin using the following steps:

    resolvers += "Madoushi sbt-plugins" at "https://dl.bintray.com/madoushi/sbt-plugins/"
    
    addSbtPlugin("org.madoushi.sbt" % "sbt-sass" % "0.9.2")
    

    I picked up the latest version from https://dl.bintray.com/madoushi/sbt-plugins/org.madoushi.sbt/sbt-sass/scala_2.10/sbt_0.13/

    But i got some error during runtime.

提交回复
热议问题