You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
391 B
11 lines
391 B
import fs from 'fs';
|
|
import path from 'path';
|
|
|
|
// POSTS_PATH is useful when you want to get the path to a specific file
|
|
export const POSTS_PATH = path.join(process.cwd(), 'posts');
|
|
|
|
// postFilePaths is the list of all mdx files inside the POSTS_PATH directory
|
|
export const postFilePaths = fs
|
|
.readdirSync(POSTS_PATH)
|
|
// Only include md(x) files
|
|
.filter((path) => /\.mdx?$/.test(path)); |