-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Failed to initialize Hotjar tracking script #28
Comments
I'm having the same issue here. @youssefBarnoukh have you been able to fix it? |
I think it may be connected to your Content-Security-Policy definition, don't you see any other error before that one you've listed In case it's CSP there should be (at least in chrome dev tools) something like:
If it's CSP problem and you have full control of it's definition you can use I haven't got full control over CSP in my project and there was a problem with executing dynamically created inline script added to HTML when export default function ({ id, sv, debug = false, nonce = null }) {
(function (h, o, t, j, a, r) {
h.hj =
h.hj ||
function () {
(h.hj.q = h.hj.q || []).push(arguments);
};
h._hjSettings = { hjid: id, hjsv: sv, hjDebug: debug };
h._scriptPath = t + h._hjSettings.hjid + j + h._hjSettings.hjsv;
if (!document.querySelector('script[src*="' + h._scriptPath + '"]')) {
a = o.getElementsByTagName('head')[0];
r = o.createElement('script');
if (nonce) r.setAttribute('nonce', nonce);
r.async = 1;
r.src = h._scriptPath;
a.appendChild(r);
}
})(window, document, 'https://static.hotjar.com/c/hotjar-', '.js?sv=');
} |
I'm using Hotjar with react 18
basic use as follow:
when I run my project locally, no error is shown but once deployed, I get the following error
We are using Ngnix with a Content-Security-Policy in header that includes hotjar domain but still it didn't work
add_header Content-Security-Policy "default-src 'none'; connect-src https://insights.hotjar.com 'self' ...
Any help will be much appreciate it
Regards
The text was updated successfully, but these errors were encountered: