First time using tailwind. So I've a stylesheet where I'm using some basic style that I want to use like: h5 {font-size: 1.200rem; /* 19.2px */}. During the npm dev the font-size is not getting applied and is replaced by the tailwind value of font-size : inherit;. But after getting deployed on vercel / npm build. It's using the stylesheet. How do I get it to work normally in dev.
astro.config.mjs
import { defineConfig } from 'astro/config';
import vercel from "@astrojs/vercel/serverless";
import tailwind from "@astrojs/tailwind";
// https://astro.build/config
export default defineConfig({
output: "hybrid",
adapter: vercel(),
integrations: [tailwind()]
});
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
theme: {
extend: {},
},
plugins: [],
}