You may globally inject custom CSS files after the Sharp assets by defining their paths in the config/sharp.php
config file.
// config/sharp.php
"extensions" => [
"assets" => [
"strategy" => "raw",
"head" => [
"/css/inject.css", // Outputs <link rel="stylesheet" href="/css/inject.css"> after sharp assets
],
],
],
// ...
The comment next to the item within the head
position show how the output would appear in the HTML.
The strategy
defines how the asset path will be rendered