Fix chatwoot import issue by checking whether we're in an execution environment before loading the script

This commit is contained in:
sabaimran 2024-12-08 17:16:20 -08:00
parent 66f59c8d41
commit 47a087c73b

View file

@ -1,4 +1,8 @@
(function (d, t) {
import ExecutionEnvironment from '@docusaurus/ExecutionEnvironment';
// Only execute on client-side
if (ExecutionEnvironment.canUseDOM) {
(function (d, t) {
var BASE_URL = "https://app.chatwoot.com";
var g = d.createElement(t), s = d.getElementsByTagName(t)[0];
g.src = BASE_URL + "/packs/js/sdk.js";
@ -11,4 +15,5 @@
baseUrl: BASE_URL
})
}
})(document, 'script');
})(document, 'script');
}