Ensure plugin scripts are loaded in correct order (#4388)

This commit is contained in:
WithoutPants
2023-12-22 15:10:21 +11:00
committed by GitHub
parent d258976358
commit e1782d094d

View File

@@ -14,6 +14,7 @@ const useScript = (urls: string | string[], condition?: boolean) => {
const script = document.createElement("script");
script.src = url;
script.async = false;
script.defer = true;
return script;
});