I am using metronic 9 tailwind html in my asp.net 8 mvc app. The theme is configured inside _layout. the side bar, header and footer works normally but everything inside the @RenderBody() is being displayed as a plain text, even though the content-type received in the browser is html. Am i missing a global css bundle? i didn't find it in the downloaded theme.
i did a trial and include bootstrap.css for testing and the html did render correctly.
Hi Ayman Chehab
Metronic 9 Tailwind uses Tailwind CSS (not Bootstrap). Include the Tailwind CSS bundle in your _Layout.cshtml.
Check if wwwroot/assets/css/styles.css exists in your project
If missing, the CSS needs to be built from the Metronic source
Please check this doc:
https://keenthemes.com/metronic/tailwind/docs/getting-started/integration/asp.net-core
Thanks