Feat: add unlisted path constant

Co-authored-by: gemini-3.7-flash <noreply@google.com>
This commit is contained in:
2026-08-15 15:20:42 -07:00
parent 56a886cb6b
commit 2da9e06f04

View File

@@ -3,6 +3,7 @@ import path from "node:path";
export const ROOT = process.cwd(); export const ROOT = process.cwd();
export const SRC = path.join(ROOT, "src"); export const SRC = path.join(ROOT, "src");
export const PUBLIC = path.join(ROOT, "public"); export const PUBLIC = path.join(ROOT, "public");
export const UNLISTED_PATH = path.join(ROOT, "unlisted.txt");
export const ARTICLES_GLOB = "articles/**/index.md"; export const ARTICLES_GLOB = "articles/**/index.md";
export const SITE_URL = (process.env.SITE_URL || "https://apophenia.news").replace(/\/+$/, ""); export const SITE_URL = (process.env.SITE_URL || "https://apophenia.news").replace(/\/+$/, "");