social components
inlay.at
atproto
components
sdui
1import { config } from "dotenv";
2import { resolve, dirname } from "path";
3import { fileURLToPath } from "url";
4
5const __dirname = dirname(fileURLToPath(import.meta.url));
6
7// Load .env from workspace root (two levels up from invalidator/src/)
8config({ path: resolve(__dirname, "../..", ".env") });