ba-cafe

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

tailwind.config.ts (298B)


      1 import type { Config } from 'tailwindcss'
      2 
      3 const config: Config = {
      4 
      5   darkMode: 'class', 
      6   
      7   content: [
      8     './src/pages/**/*.{js,ts,jsx,tsx,mdx}',
      9     './src/components/**/*.{js,ts,jsx,tsx,mdx}',
     10     './src/app/**/*.{js,ts,jsx,tsx,mdx}',
     11   ],
     12   theme: {},
     13   plugins: [],
     14 }
     15 export default config