Multiline CSS selectors do not work correctly with ssr
[issue link]I use a lot of CSS classes and I like long, descriptive class names, thats why I sometimes end up with multi line class names:
<div
class="
o-grid__item
o-vertical-spacing
o-vertical-spacing--l
u-width-12/12
u-width-6/12@m">
</div>
It seems that the server renderer can’t handle those new line separated classes:
As soon as I trigger client side rendering, everything looks fine again:
Is there something I can do about this or is this a bug in Nuxt or the Vue server renderer?