I have the following config:
RjsKeys.appBuildProfile := JS.Object(
"appDir" -> RjsKeys.appDir.value,
"baseUrl" -> RjsKeys.baseUrl.value,
"dir" -> RjsKeys.dir.value,
"generateSourceMaps" -> RjsKeys.generateSourceMaps.value,
"mainConfigFile" -> RjsKeys.appDir.value / RjsKeys.mainConfigFile.value.getPath,
"modules" -> RjsKeys.modules.value,
"optimize" -> RjsKeys.optimize.value,
"preserveLicenseComments" -> RjsKeys.preserveLicenseComments.value,
"removeCombined" -> RjsKeys.removeCombined.value
)
This produces error - Error: Error: Module loading did not complete for: ....
However when I run separately r.js directly on the app.build.js everything works.
Please help.