v24.6.0
Support async functions for loading the utils script - thanks to @Mr0grog
Details
Deprecated utilsScript
option, in favour of new loadUtilsOnInit
option, which can be used in 2 ways:
// a string URL, as before
loadUtilsOnInit: "/path/to/utils.js"
or
// a function which returns a promise, resolving to the utils module
loadUtilsOnInit: () => import("/path/to/utils.js")
See readme for more info.