Since 9.2.0, we use *script* tags to dynamically load libraries. Before, we performed fetch and called *Function*. The new approach does not allow to reliably suppress AMD with `define.amd = false` right before code execution. We drop this logic. If a library stops from being loaded, the simple solution is to wrap the library code: ```js define.amd = false; {LIBRARY_CODE} define.amd = true; ```