jkabot
02/28/2019, 4:08 PMrequire(['path/to/your/module']), function(...));
Or if you want to configure the path like using an NAmdConfig json file
var cfg = {
paths: {
someLibrary: '/path/to/your/library'
},
context: {}
};
require.config(cfg)(['someLibrary'], function(library) { ... });