We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2547859 commit f7f83d1Copy full SHA for f7f83d1
1 file changed
utils/desktop.js
@@ -76,8 +76,12 @@ async function createNewWindow() {
76
shell: true,
77
});
78
79
- server.stdout.on("data", (data) => { console.log(`[NITRO] ${data.toString()}`) });
80
- server.stderr.on("data", (data) => { console.log(`[NITRO] ${data.toString()}`) });
+ server.stdout.on("data", (data) => {
+ console.log(`[NITRO] ${data.toString()}`);
81
+ });
82
+ server.stderr.on("data", (data) => {
83
84
85
86
const controller = new AbortController();
87
const expectedResponse = `Listening on http://[::]:${PORT}`;
0 commit comments