forked from Mohfazam/SheSync-Thief
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
32 lines (30 loc) · 932 Bytes
/
tailwind.config.js
File metadata and controls
32 lines (30 loc) · 932 Bytes
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
/** @type {import('tailwindcss').Config} */
export default {
mode: "jit", // Force Just-in-Time mode
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
"./*.{html,js}",
"./ecom/**/*.{html,js}",
"./blogs/**/*.{html,js}",
"./forum/**/*.{html,js}",
"./consultation/**/*.{html,js}",
"./tracker/**/*.{html,js}",
"./scripts/**/*.{html,js}",
],
theme: {
extend: {},
},
safelist: [
...Array.from({ length: 101 }, (_, i) => `ml-${i}`),
...Array.from({ length: 101 }, (_, i) => `mr-${i}`),
...Array.from({ length: 101 }, (_, i) => `mt-${i}`),
...Array.from({ length: 101 }, (_, i) => `mb-${i}`),
...Array.from({ length: 101 }, (_, i) => `py-${i}`),
...Array.from({ length: 101 }, (_, i) => `px-${i}`),
...Array.from({ length: 101 }, (_, i) => `h-${i}`),
...Array.from({ length: 101 }, (_, i) => `w-${i}`),
],
plugins: [],
darkMode: 'class',
};