Files
Atomcms-edit/app/Services/ViteService.php
T
2026-05-09 17:32:17 +02:00

18 lines
347 B
PHP
Executable File

<?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);
}
}