404 error for the resource "/partytown/partytown-sandbox-sw.html?1646853715625"
See original GitHub issueI recently tried integrating Partytown for my website Mustakbil.com but encountered this error https://github.com/BuilderIO/partytown/issues/38#issuecomment-1060066828
Which thankfully, has been fixed in the latest version of Partytown (v 0.4.5), but now I am receiving 404 error for the resource “/partytown/partytown-sandbox-sw.html?1646853715625”
Below are the steps I followed to add partytown to my website:
I copied contents of @builder.io\partytown\lib\partytown.js
and added it to the script tag in my index.html file.
<script>
!function (t, e, n, i, r, o, a, d, s, c, p, l) { function u() { l || (l = 1, "/" == (a = (o.lib || "/~partytown/") + (o.debug ? "debug/" : ""))[0] && (s = e.querySelectorAll('script[type="text/partytown"]'), i != t ? i.dispatchEvent(new CustomEvent("pt1", { detail: t })) : (d = setTimeout(w, 1e4), e.addEventListener("pt0", f), r ? h(1) : n.serviceWorker ? n.serviceWorker.register(a + (o.swPath || "partytown-sw.js"), { scope: a }).then((function (t) { t.active ? h() : t.installing && t.installing.addEventListener("statechange", (function (t) { "activated" == t.target.state && h() })) }), console.error) : w()))) } function h(t) { c = e.createElement(t ? "script" : "iframe"), t || (c.setAttribute("style", "display:block;width:0;height:0;border:0;visibility:hidden"), c.setAttribute("aria-hidden", !0)), c.src = a + "partytown-" + (t ? "atomics.js?v=0.4.5" : "sandbox-sw.html?" + Date.now()), e.body.appendChild(c) } function w(t, n) { for (f(), t = 0; t < s.length; t++)(n = e.createElement("script")).innerHTML = s[t].innerHTML, e.head.appendChild(n); c && c.parentNode.removeChild(c) } function f() { clearTimeout(d) } o = t.partytown || {}, i == t && (o.forward || []).map((function (e) { p = t, e.split(".").map((function (e, n, i) { p = p[i[n]] = n + 1 < i.length ? "push" == i[n + 1] ? [] : p[i[n]] || {} : function () { (t._ptf = t._ptf || []).push(i, arguments) } })) })), "complete" == e.readyState ? u() : (t.addEventListener("DOMContentLoaded", u), t.addEventListener("load", u)) }(window, document, navigator, top, window.crossOriginIsolated);
</script>
Added below config just above the Partytown script:
<script>
window.partytown = {
forward: ["dataLayer.push", "fbq"],
lib: "/partytown/",
resolveUrl: function (url) {
if (url.hostname === 'www.google-analytics.com') {
var proxyUrl = new URL('https://myproxyurl.com/');
proxyUrl.searchParams.append('url', url.href);
return proxyUrl;
}
return url;
}
};
</script>
Below is my Google Tag Manager code:
<script type="text/partytown">
(function (w, d, s, l, i) {
w[l] = w[l] || []; w[l].push({
'gtm.start':
new Date().getTime(), event: 'gtm.js'
}); var f = d.getElementsByTagName(s)[0],
j = d.createElement(s), dl = l != 'dataLayer' ? '&l=' + l : ''; j.async = true; j.src =
'https://www.googletagmanager.com/gtm.js?id=' + i + dl; f.parentNode.insertBefore(j, f);
})(window, document, 'script', 'dataLayer', 'GTM-NJFTK74');
</script>
Tag Manager code adds:
- Google Ads Conversion Tracking
- Google Analytics: GA4 Configuration
- Conversion Linker
- Google Analytics: Universal Analytics
- Facebook Pixel as Custom HTML
Issue Analytics
- State:
- Created 2 years ago
- Reactions:1
- Comments:15 (2 by maintainers)
Top Results From Across the Web
Error 404: 4 Ways to Fix It - Hostinger
Error 404 is a response code, meaning the server could not locate the requested content. Check this article to learn 4 steps to...
Read more >How to Fix Error 404 Not Found on Your WordPress Site - Kinsta
The Error 404 Not Found status code indicates that the origin server did not find the target resource. Check out these common causes...
Read more >What Is a 404 Error? How to Deal With the Web Error
A 404 error indicates that the webpage you're trying to reach can't be found, and usually means that the page has moved or...
Read more >How to Fix WordPress 404 Not Found Error [8 Easy Solutions]
This blog shares the easy fixes to bypass the 404 error on your ... a lot more resources than a simple blog with...
Read more >404 Not Found Error: What It Is and How to Fix It - Airbrake Blog
A HTTP 404 error happens when a resource is unavailable. The client (web browser) received a message from the server (remote computer) that...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I’m experiencing same issue,
it seems
sandbox-sw.html
is required when window.crossOriginIsolated = false, which instead of usingAtomics
fallbacks to use service-worker.sandbox-sw.html
doesn’t seem to be find in partytown repo although is referred in the snippet.ts file.hope you find something 😸
@hiepxanh sure, I’d love to 😃
For now I just followed the HTML guide under Integrations section (https://partytown.builder.io/html) but I have yet to make it work 😄