This commit is contained in:
syuilo
2020-12-27 21:49:39 +09:00
parent 698fbdf88b
commit 0e7778bebf
15 changed files with 2 additions and 2 deletions

View File

@ -110,7 +110,7 @@ router.get('/docs.json', async ctx => {
ctx.body = [];
return;
}
const paths = glob.sync(__dirname + `/../../../src/docs/*.${lang}.md`);
const paths = glob.sync(__dirname + `/../../../src/docs/${lang}/*.md`);
const docs: { path: string; title: string; }[] = [];
for (const path of paths) {
const md = fs.readFileSync(path, { encoding: 'utf8' });