Skip to content

Instantly share code, notes, and snippets.

@mike-moreau
Created November 2, 2021 16:31
Show Gist options
  • Save mike-moreau/7efbd42b4fe67a92d00b2fbf4058ef9b to your computer and use it in GitHub Desktop.
Save mike-moreau/7efbd42b4fe67a92d00b2fbf4058ef9b to your computer and use it in GitHub Desktop.
Laravel Valet Driver to Server Sites from dist folder
<?php
class LocalValetDriver extends LaravelValetDriver
{
private $site_folder = '/dist';
/**
* Determine if the driver serves the request.
*
* @param string $sitePath
* @param string $siteName
* @param string $uri
* @return void
*/
public function serves($sitePath, $siteName, $uri)
{
return true;
}
/**
* Determine if the incoming request is for a static file.
*
* @param string $sitePath
* @param string $siteName
* @param string $uri
* @return string|false
*/
public function isStaticFile($sitePath, $siteName, $uri)
{
if (file_exists($staticFilePath = $sitePath.$this->site_folder.$uri)) {
return $staticFilePath;
}
return false;
}
/**
* Get the fully resolved path to the application's front controller.
*
* @param string $sitePath
* @param string $siteName
* @param string $uri
* @return string
*/
public function frontControllerPath($sitePath, $siteName, $uri)
{
$path = $sitePath.$this->site_folder;
$_SERVER['PHP_SELF'] = $uri;
$_SERVER['SERVER_ADDR'] = '127.0.0.1';
$_SERVER['SERVER_NAME'] = $_SERVER['HTTP_HOST'];
$_SERVER['DOCUMENT_ROOT'] = $path;
return strpos($uri, '.html')
? $path.$uri
: $sitePath.'/dist/index.html';
}
}
@mike-moreau
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment