[PLUGINS][Oomox] Add rel to response headers

This commit is contained in:
Eliseu Amaro 2021-12-26 21:25:37 +00:00
parent 7402e749cb
commit b30198413c
Signed by: eliseuamaro
GPG Key ID: 96DA09D4B97BC2D5
1 changed files with 1 additions and 1 deletions

View File

@ -238,6 +238,6 @@ class Oomox
}
$content = Formatting::twigRenderFile('/oomox/root_override.css.twig', ['oomox' => $oomox_table]);
return new Response($content, status: 200, headers: ['content-type' => 'text/css']);
return new Response($content, status: 200, headers: ['content-type' => 'text/css', 'rel' => 'stylesheet']);
}
}