laravel-page-speed icon indicating copy to clipboard operation
laravel-page-speed copied to clipboard

InsertDNSPrefetch with head attributes

Open jamesliu78 opened this issue 6 years ago • 0 comments

Some time head will have attributes. https://developers.facebook.com/docs/reference/opengraph/object-type/article/

         })->unique()->implode("\n");
 
         $replace = [
-            '#<head>(.*?)#' => "<head>\n{$dnsPrefetch}"
+            '#<head[^>]*>(.*?)#' => "<head>\n{$dnsPrefetch}"
         ];
 
         return $this->replace($replace, $buffer);

jamesliu78 avatar Aug 07 '18 08:08 jamesliu78