It's a naive question but i'm wondering if there is a gain to use preload link for a css file requested directly
<head>
<link rel=preload href=/style.css as=style>
<link rel=stylesheet href=/style.css>
</head>
Instead of a classic
<head>
<link href=/style.css rel=stylesheet>
</head>