1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-08-22 17:02:58 +02:00

fix: topic path

This commit is contained in:
Arik Chakma
2025-08-20 20:00:03 +06:00
committed by Kamran Ahmed
parent 179cefe4da
commit 9ec3c1fb9d

View File

@@ -115,7 +115,7 @@ for (const topic of allTopics) {
const topicSlug = `${slugify(label)}@${nodeId}.md`;
const topicPath = path.join(ROADMAP_CONTENT_DIR, topicSlug);
const topicPath = path.join(ROADMAP_CONTENT_DIR, 'content', topicSlug);
const topicDir = path.dirname(topicPath);
const topicDirExists = await fs
.stat(topicDir)