Is there any chance that I can use `require(['cust...
# suitescript
l
Is there any chance that I can use
require(['customModule.js'], function(custom){})
inside
define([], function{})
in schedule script?
b
you should be able to, but the way you are using it should require absolute paths
l
Even in SuiteApp?
b
Not sure about bundle virtual paths, but relative paths dont work for the global require
s
Why not just put your custom modules in the
define
?