I have the @nuxtjs/tailwindcss and @nuxt/content installed.
Doing a simple page like so:
<template>
<main>
<ContentDoc path="terms-of-service" />
</main>
</template>
<script setup lang="ts">
</script>
With my content/terms-of-service.md looking like this:
---
title: 'Terms of Service'
---
# Hi
This is a test
I get no styling for the markdown text
Where am I going wrong?