my tailwind CSS is no working after deploying site on netlify while it's working ok locally

19 Views Asked by At

this is the URL of my website: https://devartverse.netlify.app/

please help me out to solve this issue.

MZT!

I tried to resolve it by my own but I don't reached the solution.

and this is my tailwind.config.js file's code:

/** @type {import('tailwindcss').Config} */
module.exports = {
  content: ["*"],
  theme: {
    
    extend: {
      fontFamily:{
      
        'montserrat':['montserrat'],
        'gilroy':['gilroy'],
        'gilroy-bold':['gilroy-bold'],
        'poppins':['poppins']
      }
    },
  },
  plugins: [],
}
0

There are 0 best solutions below