Skip to content

Commit 87b8b97

Browse files
committed
fix:vercel2
1 parent e043cd1 commit 87b8b97

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Diff for: controllers/root.js

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ export default (fastify, options, done) => {
77
fastify.get('/', async (request, reply) => {
88
let readmePath = null;
99
const files = readdirSync(options.rootDir);
10+
console.log(files);
1011
for (const file of files) {
1112
if (/^readme\.md$/i.test(file)) {
1213
readmePath = path.join(options.rootDir, file);

0 commit comments

Comments
 (0)