[MM-58445] Try deferring plugins scripts loading (#27179)

Этот коммит содержится в:
M-ZubairAhmed
2024-06-09 07:16:14 +00:00
коммит произвёл GitHub
родитель f3e760008c
Коммит e2abac5486

Просмотреть файл

@@ -153,6 +153,7 @@ export function loadPlugin(manifest) {
script.id = 'plugin_' + manifest.id;
script.type = 'text/javascript';
script.src = getSiteURL() + bundlePath;
script.defer = true;
script.onload = onLoad;
script.onerror = onError;