From 77271d2ca530e76d6cc411d067b4574bbb646897 Mon Sep 17 00:00:00 2001 From: Matilde Park Date: Thu, 29 Aug 2024 20:57:37 -0400 Subject: [PATCH] serve: no /doc --- src/bin/commands/serve.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/commands/serve.ts b/src/bin/commands/serve.ts index 045779f..c5bbf99 100644 --- a/src/bin/commands/serve.ts +++ b/src/bin/commands/serve.ts @@ -22,7 +22,7 @@ export const handler = async (argv: any) => { port: port, }); console.log(`Server started on port ${port}`); - console.log(`Documentation available at http://localhost:${port}/doc`); + console.log(`Documentation available at http://localhost:${port}/`); console.log('Press Ctrl+C to stop the server.'); return new Promise((resolve) => {