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 edc698f commit 55cc168Copy full SHA for 55cc168
packages/cli/src/cli/helpers/server.ts
@@ -64,10 +64,9 @@ export async function runServer(
64
app.listen(port, () => {
65
const url = `http://localhost:${port}#/${route}`;
66
console.info("Press Ctrl+C to stop the server");
67
+ console.info(`Server started at ${url}`);
68
if (process.env.NODE_ENV !== "development") {
69
openInBrowser(url);
- } else {
70
- console.info(`Server started at ${url}`);
71
}
72
});
73
0 commit comments