Skip to content
This repository has been archived by the owner on Aug 16, 2024. It is now read-only.

Commit

Permalink
chore: add text to know for dev or production
Browse files Browse the repository at this point in the history
  • Loading branch information
yooouuri committed Jan 29, 2024
1 parent 2d1f70d commit 29bac35
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/node/dev.ts
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,6 @@ export async function dev({ port, hostname, viteConfig: viteConfig }: { port: nu
})

app.listen(port, hostname, () => {
console.log(`http://${hostname}:${port}`)
console.log(`start dev server on http://${hostname}:${port}`)
})
}
2 changes: 1 addition & 1 deletion src/node/start.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,6 @@ export async function start(port: number, hostname: string) {
})

app.listen(port, hostname, () => {
console.log(`http://${hostname}:${port}`)
console.log(`start production on http://${hostname}:${port}`)
})
}

0 comments on commit 29bac35

Please sign in to comment.