有没有人能够根据http://www.playframework.org/documentation/2.0.3/Assets使用增量资产编译来加速他们的开发?
我无法让它工作,如果我将 incrementalAssetsCompilation := true 添加到我的 Build.scala 文件中,我会收到编译错误
Build.scala:16: not found: value incrementalAssetsCompilation [error] incrementalAssetsCompilation := true [error] ^ [error] 发现一个错误
我的 Build.scala 看起来像这样,
val main = PlayProject(appName, appVersion, appDependencies, mainLang = JAVA).settings( // Add your own project settings here incrementalAssetsCompilation := true )
有任何想法吗?