๐Ÿ“ฆ jaberjaber23 / AI-Mena-Investors

๐Ÿ“„ tailwind.config.ts ยท 12 lines
1
2
3
4
5
6
7
8
9
10
11
12import type { Config } from 'tailwindcss';

const config: Config = {
  content: [
    './pages/**/*.{js,ts,jsx,tsx,mdx}',
    './components/**/*.{js,ts,jsx,tsx,mdx}',
    './app/**/*.{js,ts,jsx,tsx,mdx}',
  ],
  plugins: [],
};
export default config;