Files
rfc.vac.dev/docusaurus-utils/scrapper/config.mjs
Filip Pajic 32f0947064 chore: Routing Refactor (#3)
* scrape with 1:1 mapping to origin repo

* exclude .md extension from file path in URLs inside MDs

* removed legacy static files

* remove image path manipulation

* move scrapper to new folder

* sidebar custom ordering implemented
2024-04-25 09:29:22 +02:00

13 lines
168 B
JavaScript

import 'dotenv/config';
const {
GITHUB_TOKEN
} = process.env;
if (!GITHUB_TOKEN) {
throw new Error("Please provide the GITHUB_TOKEN")
}
export {
GITHUB_TOKEN
}