diff --git a/app/Http/View/Composers/HeadComposer.php b/app/Http/View/Composers/HeadComposer.php index 4fbfcc43..6775113f 100644 --- a/app/Http/View/Composers/HeadComposer.php +++ b/app/Http/View/Composers/HeadComposer.php @@ -100,11 +100,6 @@ class HeadComposer 'integrity' => 'sha256-h20CPZ0QyXlBuAw7A+KluUYx/3pK+c7lYEpqLTlxjYQ=', 'crossorigin' => 'anonymous', ]; - $links[] = [ - 'rel' => 'preload', - 'as' => 'script', - 'href' => $this->webpack->url('app.js'), - ]; $links[] = ['rel' => 'stylesheet', 'href' => $this->webpack->url('style.css')]; $view->with('links', $links); $view->with('inline_css', option('custom_css'));