From my testings, only weights 400 (normal) and 700 (bold) are available out of the box by using the @nuxtjs/tailwindcss module like this:
<span class="font-roboto">...</span> <!-- Works -->
<span class="font-roboto font-bold">...</span> <!-- Works -->
<span class="font-roboto font-medium">...</span> <!-- Doesn't work -->
font-roboto is defined in tailwind.config.
Am I missing something, or do I do have to specify the other weights in the module options?
From my testings, only weights
400(normal) and700(bold) are available out of the box by using the@nuxtjs/tailwindcssmodule like this:Am I missing something, or do I do have to specify the other weights in the module options?