chore: dev.ts 中输出文档地址

This commit is contained in:
unanmed 2025-08-20 15:34:02 +08:00
parent 2d1ede21cd
commit 4635c8c1c8

View File

@ -480,6 +480,7 @@ async function startHttpServer(port: number = 3000) {
server.on('listening', () => { server.on('listening', () => {
console.log(`编辑器地址http://127.0.0.1:${port}/editor.html`); console.log(`编辑器地址http://127.0.0.1:${port}/editor.html`);
console.log(`文档地址http://127.0.0.1:${port}/_docs/index.html`);
setupHttp(server, name); setupHttp(server, name);
}); });