You've already forked Atomcms-edit
18 lines
347 B
PHP
Executable File
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);
|
|
}
|
|
}
|