FWIW also, I don't use the `require.config` when I...
# suitescript
e
FWIW also, I don't use the
require.config
when I pull in `moment`; I just put the path directly in the
define
call:
Copy code
define(["../lib/moment.min"], function (moment) {
   function beforeLoad(context) {
      var today = moment();
      // ...
  }
  // ...
});
👍 2