···11import type { Metadata } from "next";
22-import NextPlausible from "next-plausible";
32import { Inter, Libre_Baskerville } from "next/font/google";
43import localFont from "next/font/local";
54import { cx } from "#/lib/cx";
···5251 return (
5352 <html lang="en">
5453 <head>
5555- <NextPlausible
5656- domain={HOSTNAME}
5757- customDomain={`https://${PLAUSIBLE_DOMAIN}`}
5858- trackOutboundLinks
5959- selfHosted
5454+ <Script
5555+ defer
5656+ data-domain="alice.bsky.sh"
5757+ src={`https://${PLAUSIBLE_DOMAIN}/js/script.outbound-links.js`}
6058 />
6159 </head>
6260 <body
-1
src/lib/config.ts
···77 "this is a blog. there are many like it, but this one is mine.";
88export const GITHUB_USERNAME = "aliceisjustplaying";
99export const CLOUDFLARE_BEACON_TOKEN = "80339998c1034152803ce2df95a47a56";
1010-export const USE_PLAUSIBLE = true;
1110export const PLAUSIBLE_DOMAIN = "plausible.bsky.sh";