-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
44 lines (41 loc) · 1.04 KB
/
tailwind.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// import 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}',
// ],
// theme: {
// extend: {
// gridTemplateColumns: {
// '13': 'repeat(13, minmax(0, 1fr))',
// colors: {
// blue: {
// 400: '#2589FE',
// 500: '#0070F3',
// 600: '#2F6FEB',
// },
// },
// },
// keyframes: {
// shimmer: {
// '100%': {
// transform: 'translateX(100%)',
// },
// },
// },
// },
// plugins: [require('@tailwindcss/forms')],
// };
// export default config;
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./app/**/*.{js,ts,jsx,tsx}", // or "./pages/**/*.{js,ts,jsx,tsx}" depending on where your pages are
"./components/**/*.{js,ts,jsx,tsx}", // Ensure this is correct for where your components are
],
theme: {
extend: {},
},
plugins: [],
};