mirror of
https://github.com/archtechx/tenancy.git
synced 2025-12-12 09:34:04 +00:00
20 lines
418 B
PHP
20 lines
418 B
PHP
<?php
|
|
|
|
namespace Stancl\Tenancy;
|
|
|
|
use Illuminate\Foundation\Vite as BaseVite;
|
|
|
|
class Vite extends BaseVite // todo move to a different directory in v4
|
|
{
|
|
/**
|
|
* Generate an asset path for the application.
|
|
*
|
|
* @param string $path
|
|
* @param bool|null $secure
|
|
* @return string
|
|
*/
|
|
protected function assetPath($path, $secure = null)
|
|
{
|
|
return global_asset($path);
|
|
}
|
|
}
|