this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix

alice 5616b218 0bb03940

+4 -3
+4 -1
next.config.mjs
··· 1 1 import { withPlausibleProxy } from "next-plausible"; 2 - import { PLAUSIBLE_DOMAIN, USE_PLAUSIBLE } from "./src/lib/config"; 3 2 4 3 /** @type {import('next').NextConfig} */ 5 4 const nextConfig = { ··· 14 13 ], 15 14 }, 16 15 }; 16 + 17 + // TODO: janky 18 + const USE_PLAUSIBLE = false; 19 + const PLAUSIBLE_DOMAIN = "plausible.alice.bsky.sh"; 17 20 18 21 if (USE_PLAUSIBLE) { 19 22 nextConfig = withPlausibleProxy({
-2
src/lib/config.ts
··· 6 6 export const DESCRIPTION = 7 7 "this is a blog. there are many like it, but this one is mine."; 8 8 export const GITHUB_USERNAME = "aliceisjustplaying"; 9 - export const USE_PLAUSIBLE = false; 10 - export const PLAUSIBLE_DOMAIN = "plausible.mozzius.dev";