Skip to content

Commit

Permalink
hotfix: default port
Browse files Browse the repository at this point in the history
  • Loading branch information
couriourc committed Sep 13, 2024
1 parent a790b68 commit 23decf1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/startup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ export async function startup(config, cwd) {
// 监听

app
.listen(3001 || ~~config.port);
.listen(~~config.port);
// 欢迎信息
// @ts-ignore
logger.info(`
Expand Down

0 comments on commit 23decf1

Please sign in to comment.