I have installed tailwindcss via npm (using postcss) and configured files as per installation guide. However, the tailwind css shows no effect and does not apply any style to the page. Codes of config files can be found below:
postcss.config.js
module.exports = { plugins: { tailwindcss: { config: './tailwindcss-config.js' }, autoprefixer: {}, }, }
tailwind.config.js
module.exports = { content: ["./src/**/*.{html,js}"], theme: { extend: {}, }, plugins: [],}
globals.css
@tailwind base;@tailwind components;@tailwind utilities;