We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 55e2aa4 commit f0cb5a3Copy full SHA for f0cb5a3
src/utils/cli-styles.ts
@@ -143,10 +143,9 @@ export function createServerBanner(
143
port: number,
144
options: Record<string, any> = {}
145
): string {
146
- // Create endpoints - keeping it simple regardless of host binding
147
const endpoints = [
148
- `${styles.url(`http://localhost:${port}`)} - API Root`,
149
- `${styles.url(`http://localhost:${port}/db`)} - Full Database`,
+ `${styles.url(`http://${host}:${port}`)} - API Root`,
+ `${styles.url(`http://${host}:${port}/db`)} - Full Database`,
150
];
151
152
const settings = Object.entries(options).map(
0 commit comments