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 406b1fc commit 996a8f6Copy full SHA for 996a8f6
app/Commands/Concerns/SharesViteServer.php
@@ -27,6 +27,12 @@ trait SharesViteServer
27
28
protected function shareViteServer($hmrServer)
29
{
30
+ $isWindows = strpos(php_uname('s'), 'Windows') !== false;
31
+ if ($isWindows) {
32
+ // Windows does not support non-blocking child processes from within ReactPHP.
33
+ return;
34
+ }
35
+
36
$this->info("Vite HMR server detected…", OutputInterface::VERBOSITY_VERBOSE);
37
38
$phpBinary = (new PhpExecutableFinder())->find();
builds/expose
90 Bytes
0 commit comments