chore: update webmentionSenderMountPath config to default /webmention-sender

This commit is contained in:
svemagie
2026-03-11 12:23:12 +01:00
parent 5036f9c7fd
commit 548450a12a

View File

@@ -115,7 +115,7 @@ const nodeEnv = (process.env.NODE_ENV || "production").toLowerCase();
const debugEnabled = process.env.INDIEKIT_DEBUG === "1" || nodeEnv !== "production";
const siteName = process.env.SITE_NAME || "Indiekit";
const webmentionSenderMountPath =
process.env.WEBMENTION_SENDER_MOUNT_PATH || "/webmentions-sender";
process.env.WEBMENTION_SENDER_MOUNT_PATH || "/webmention-sender";
const webmentionSenderTimeoutRaw = Number.parseInt(
process.env.WEBMENTION_SENDER_TIMEOUT || "10000",
10,