mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-25 11:17:50 +01:00
27 lines
1001 B
HTML
27 lines
1001 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>Posthog</title>
|
|
<link rel="icon" href="https://posthog.com/wp-content/uploads/2020/01/cropped-Frame-1-32x32.png" sizes="32x32"/>
|
|
<link rel="icon" href="https://posthog.com/wp-content/uploads/2020/01/cropped-Frame-1-192x192.png" sizes="192x192"/>
|
|
{% if not opt_out_capture %}
|
|
<script src="https://t.posthog.com/static/array.js"></script>
|
|
<script id="posthog-snippet">
|
|
posthog.init('sTMFPsFhdP1Ssg');
|
|
</script>
|
|
{% endif %}
|
|
{% if sentry_dsn %}
|
|
<script src="https://browser.sentry-cdn.com/5.10.1/bundle.min.js" integrity="sha384-sAOze6ZTBIpiWBF3VlUteSInM4rYpjxrejp1wMmmKqA9clRZ1vZJ36Ihmt1ilTrG" crossorigin="anonymous">
|
|
</script>
|
|
<script id="sentry-snippet">location.host.indexOf('127.0.0.1') == -1 && Sentry.init({ dsn: '{{sentry_dsn}}' });</script>
|
|
{% endif %}
|
|
</head>
|
|
|
|
<body>
|
|
<div id="root"></div>
|
|
|
|
<script src="./src/index.js"></script>
|
|
|
|
</body>
|
|
</html>
|