Static GitHub Issues

[2655] Accessing css links on html template

prev: The right way to do pages structure on site with authorization
next: Is it possible for middleware to be executed only on client side ?

According to docs we can extend html template and that's works like a charm.

<!DOCTYPE html>
<html {{ HTML_ATTRS }}>
  <head>
    {{ HEAD }}
  </head>
  <body {{ BODY_ATTRS }}>
    {{ APP }}
  </body>
</html>

Here is the question; what if I want to move only link tags (css) to bottom of the page, is it possible?

<!DOCTYPE html>
<html {{ HTML_ATTRS }}>
  <head>
    {{ HEAD }} <!-- but somehow without css -->
  </head>
  <body {{ BODY_ATTRS }}>
    {{ APP }}

    {{ CSS }} <!-- only link tags (css) -->
  </body>
</html>

Is there any way to achieve this without modifying this section and creating custom CSS variable

<!--cmty--><!--cmty_prevent_hook--><div align="right"><sub><em>This question is available on <a href="https://nuxtjs.cmty.io">Nuxt.js</a> community (<a href="https://nuxtjs.cmty.io/nuxt/nuxt.js/issues/c2309">#c2309</a>)</em></sub></div>