You've already forked Epicnabbo-Catalogus-Updated-Daily
17 lines
330 B
PHP
17 lines
330 B
PHP
<?php
|
|
|
|
namespace App\Services;
|
|
|
|
use Illuminate\Foundation\Vite;
|
|
|
|
class ViteService extends Vite
|
|
{
|
|
/**
|
|
* Generate a script tag for the given URL.
|
|
*/
|
|
protected function makeScriptTag($url): string
|
|
{
|
|
return sprintf('<script type="module" src="%s" data-turbolinks-eval="false"></script>', $url);
|
|
}
|
|
}
|