Файл: vendor/laravel/framework/src/Illuminate/Support/Facades/Vite.php
Строк: 99
<?php
namespace IlluminateSupportFacades;
/**
* @method static array preloadedAssets()
* @method static string|null cspNonce()
* @method static string useCspNonce(string|null $nonce = null)
* @method static IlluminateFoundationVite useIntegrityKey(string|false $key)
* @method static IlluminateFoundationVite withEntryPoints(array $entryPoints)
* @method static IlluminateFoundationVite useManifestFilename(string $filename)
* @method static IlluminateFoundationVite createAssetPathsUsing(void $resolver)
* @method static string hotFile()
* @method static IlluminateFoundationVite useHotFile(string $path)
* @method static IlluminateFoundationVite useBuildDirectory(string $path)
* @method static IlluminateFoundationVite useScriptTagAttributes(callable|array $attributes)
* @method static IlluminateFoundationVite useStyleTagAttributes(callable|array $attributes)
* @method static IlluminateFoundationVite usePreloadTagAttributes(callable|array|false $attributes)
* @method static IlluminateSupportHtmlString|void reactRefresh()
* @method static string asset(string $asset, string|null $buildDirectory = null)
* @method static string content(string $asset, string|null $buildDirectory = null)
* @method static string|null manifestHash(string|null $buildDirectory = null)
* @method static bool isRunningHot()
* @method static string toHtml()
* @method static void macro(string $name, object|callable $macro)
* @method static void mixin(object $mixin, bool $replace = true)
* @method static bool hasMacro(string $name)
* @method static void flushMacros()
*
* @see IlluminateFoundationVite
*/
class Vite extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return IlluminateFoundationVite::class;
}
}