From 1042de2f8feb33aeb03c1d054405c8c5e9db3896 Mon Sep 17 00:00:00 2001 From: Pig Fang Date: Mon, 18 May 2020 16:46:19 +0800 Subject: [PATCH] tweak --- app/Http/View/Composers/HeadComposer.php | 5 ----- 1 file changed, 5 deletions(-) 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'));