We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8d7929 commit ea33b0eCopy full SHA for ea33b0e
1 file changed
src/lib/initialization.ts
@@ -101,8 +101,12 @@ export async function initializeApp(
101
102
await initialize()
103
104
+ const port = parseInt(options.port, 10)
105
+ const serverUrl = `http://localhost:${port}`
106
+ consola.success(`Server started at ${serverUrl}`)
107
+
108
return {
- port: parseInt(options.port, 10),
109
+ port,
110
}
111
112
0 commit comments