Hi,
I'm using sbt-rjs 1.0.7 with play 2.5.8.
my build.sbt contains:
pipelineStages := Seq(rjs)
RjsKeys.mainConfig := "main"
and my main.js contains this configuration:
requirejs.config({
baseUrl : "/assets/scripts/",
paths: {
},
generateSourceMaps : true,
removeCombined : true
});
Although removeCombined is set to true I can still fetch the *.js.src.js files and the mapping files too.
Is it a bug or misconfiguration?
Thanks