Skip to content

Commit ddbba6c

Browse files
authored
fix: return to less intrusive way of starting server in a new window on macOS (#2715)
Fixes #2696. Reverts #2628.
1 parent 4cb574a commit ddbba6c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/cli-tools/src/startServerInNewWindow.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ function startServerInNewWindow(
100100
try {
101101
return execa.sync(
102102
'open',
103-
['-na', terminal, launchPackagerScript],
103+
['-a', terminal, launchPackagerScript],
104104
procConfig,
105105
);
106106
} catch (error) {

0 commit comments

Comments
 (0)