You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I use the concatenation feature in both development (sbt run) and production (sbt dist). I want to disable compression and mangling in development and enable them in production.
I expected this to work:
pipelineStages in Assets := Seq(uglify)
UglifyKeys.compress in Assets := false
UglifyKeys.mangle in Assets := false
UglifyKeys.compress := true
UglifyKeys.mangle := true
But the plugin doesn't scope compress and mangle so they are always true.
The text was updated successfully, but these errors were encountered:
I use the concatenation feature in both development (
sbt run
) and production (sbt dist
). I want to disable compression and mangling in development and enable them in production.I expected this to work:
But the plugin doesn't scope
compress
andmangle
so they are alwaystrue
.The text was updated successfully, but these errors were encountered: