I have migrated our project from 506 to 61. as part of the migration i switched the dojo code to use the new dojo server implementation.
The problem i am having now is that custom js files that i used require(AMD) to load is now failing because its looking to the new dojo server for the js file. Is there a way to dojo to look for my custom js files within the applications js directory instead of the dojolib project?
ex.
require(["js/custom/controllers/categories"], function(cat){
//do stuff
})
is returning
http://192.168.1.144:9988/dojo19Lib/projectName/appName/common/js/custom/controllers/categories.js 404 (Not Found)
commondirectory for modules in addition to the dojolib project. Is your module under this directory? I used the Dojo Class wizard to create a module called controller under appName/common/js/custom. When I Preview the application, the request to the server ishttp://localhost:9988/dojo19Lib/projectName/appName/common/js/custom/controller.js, which ends up being resolved. - nsand