Purpose of inline page_speed css?
CaptainCannabis opened this issue · 2 comments
CaptainCannabis commented
joaorobertopb commented
This package is inspired by the project: https://www.modpagespeed.com/doc/
Inline CSS is one of several filters available.
The " Inline CSS "filter reduces the number of requests made by a web page by inserting the contents of small external CSS resources directly into the HTML document. This can reduce the time it takes to display content to the user, especially in older browsers .
Refer: https://www.modpagespeed.com/doc/filter-css-inline
if you prefer you can disable this behavior, just comment the middleware \RenatoMarinho\LaravelPageSpeed\Middleware\InlineCss::class in the app/Http/Kernel.php
file.
CaptainCannabis commented
Thx!