Lists all MDX files in a directory, optionally filtered by locale
Absolute path to directory containing MDX files
Optional
Optional locale code (e.g., 'ja', 'en') to filter files by suffix
Array of MDX file names (e.g., ['post.mdx', 'article.ja.mdx'])
// Get all MDX filesgetMDXFiles('/path/to/posts') // ['post.mdx', 'article.ja.mdx', 'article.en.mdx']// Get only Japanese MDX filesgetMDXFiles('/path/to/posts', 'ja') // ['article.ja.mdx'] Copy
// Get all MDX filesgetMDXFiles('/path/to/posts') // ['post.mdx', 'article.ja.mdx', 'article.en.mdx']// Get only Japanese MDX filesgetMDXFiles('/path/to/posts', 'ja') // ['article.ja.mdx']
Lists all MDX files in a directory, optionally filtered by locale