diff --git a/scripts/lib/constants.mjs b/scripts/lib/constants.mjs index f2e4509..0c51a5c 100644 --- a/scripts/lib/constants.mjs +++ b/scripts/lib/constants.mjs @@ -3,6 +3,7 @@ import path from "node:path"; export const ROOT = process.cwd(); export const SRC = path.join(ROOT, "src"); 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 SITE_URL = (process.env.SITE_URL || "https://apophenia.news").replace(/\/+$/, "");