使用Play Framework 2.3.1,sbt-web,Scala 2.11。
如何将编译资产的目标文件夹从“public”更改为“pub”,例如?
答案 0 :(得分:2)
您应该为此修改一对设置。例如,要将其设置为" pub",您可以这样做:
import com.typesafe.sbt.web.Import.WebKeys.public // For Play 2.5.x
import com.typesafe.sbt.web.WebKeys.public // For Play 2.3.x
public in Assets := webTarget.value / "pub" / "main",
public in TestAssets := webTarget.value / "pub" / "test",