Files
Epicnabbo-Catalogus-Updated…/Updated_Cms/app/Services/ViteService.php
T
2026-01-07 19:32:43 +01:00

18 lines
347 B
PHP

<?php
namespace App\Services;
use Illuminate\Foundation\Vite;
class ViteService extends Vite
{
/**
* Generate a script tag for the given URL.
*/
#[\Override]
protected function makeScriptTag($url): string
{
return sprintf('<script type="module" src="%s" data-turbolinks-eval="false"></script>', $url);
}
}