Analytics
Tracking how many visitors your site has.
Geppetto doesn't ship a built-in analytics integration, by design. Instead, developers can inject any code they need in Settings → Custom Code.
Adding Code
Head Code is injected just before </head>. Use it for analytics snippets (Google Analytics, Google Tag Manager, Plausible, Fathom), verification meta tags, or extra stylesheets. Body Code is injected just before </body>. Use it for scripts that belong at the end of the page. Whatever you paste lands on every page of the site.
<!-- Example: drop this in Head Code -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-XXXXXXX"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-XXXXXXX');
</script>
Custom code is only available to Developers or Owners on paid plans.