Compare commits
2 Commits
5eb34a0c59
...
develop
| Author | SHA1 | Date | |
|---|---|---|---|
|
ddcfc8d8d2
|
|||
|
dac44e1b12
|
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "mifi-ventures-landing",
|
||||
"version": "4.0.2",
|
||||
"version": "4.0.3",
|
||||
"private": true,
|
||||
"repository": "https://git.mifi.dev/mifi-ventures/landing.git",
|
||||
"packageManager": "pnpm@10.31.0+sha512.e3927388bfaa8078ceb79b748ffc1e8274e84d75163e67bc22e06c0d3aed43dd153151cbf11d7f8301ff4acb98c68bdc5cadf6989532801ffafe3b3e4a63c268",
|
||||
|
||||
@@ -12,6 +12,8 @@
|
||||
var hasLoadedThirdParty = false;
|
||||
|
||||
// Trusted Types support (for CSP `require-trusted-types-for 'script'`)
|
||||
// Clarity's tag script looks up window.trustedTypePolicies[policyName] to load its inner script;
|
||||
// we must expose the policy there for Safari (and other browsers) to avoid TT violations.
|
||||
var ttPolicy = null;
|
||||
try {
|
||||
if (
|
||||
@@ -23,6 +25,14 @@
|
||||
return url;
|
||||
},
|
||||
});
|
||||
|
||||
if (ttPolicy && !window.trustedTypePolicies) {
|
||||
window.trustedTypePolicies = {};
|
||||
}
|
||||
|
||||
if (ttPolicy) {
|
||||
window.trustedTypePolicies['mifi-ventures-policy'] = ttPolicy;
|
||||
}
|
||||
}
|
||||
} catch (_) {
|
||||
ttPolicy = null;
|
||||
|
||||
Reference in New Issue
Block a user