mirror of
https://github.com/explosion/spaCy.git
synced 2025-01-26 09:14:32 +03:00
Allow to handle directories for page creation
This commit is contained in:
parent
4151870c9f
commit
d625737451
|
@ -28,12 +28,21 @@ export const getStaticPaths: GetStaticPaths<ParsedUrlQuery> = async () => {
|
|||
// This function needs to be defined inside `getStaticPath` to be executed in executed in the correct context
|
||||
const loadFolder = (): Array<{ params: ParsedUrlQuery }> =>
|
||||
fs
|
||||
.readdirSync(path.join('docs'))
|
||||
.map((filename) => ({
|
||||
params: {
|
||||
slug: filename.replace('.mdx', ''),
|
||||
},
|
||||
}))
|
||||
.readdirSync(path.join('docs'), { withFileTypes: true })
|
||||
.flatMap((dirent: fs.Dirent) => {
|
||||
if (dirent.isDirectory()) {
|
||||
return []
|
||||
}
|
||||
if (!dirent.name.includes('.mdx')) {
|
||||
return []
|
||||
}
|
||||
|
||||
return {
|
||||
params: {
|
||||
slug: dirent.name.replace('.mdx', ''),
|
||||
},
|
||||
}
|
||||
})
|
||||
|
||||
return {
|
||||
paths: loadFolder(),
|
||||
|
|
Loading…
Reference in New Issue
Block a user