-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
122 lines (120 loc) · 1.94 KB
/
tailwind.config.ts
File metadata and controls
122 lines (120 loc) · 1.94 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
import type { Config } from "tailwindcss";
export default {
content: [
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
background: "var(--background)",
foreground: "var(--foreground)",
},
},
},
plugins: [],
// 무식해보이지만 이걸 추가해줘야 w-[x%]에 number x를 동적으로 props로 전달 가능함
safelist: [
"w-[0%]",
"w-[1%]",
"w-[2%]",
"w-[3%]",
"w-[4%]",
"w-[5%]",
"w-[6%]",
"w-[7%]",
"w-[8%]",
"w-[9%]",
"w-[10%]",
"w-[11%]",
"w-[12%]",
"w-[13%]",
"w-[14%]",
"w-[15%]",
"w-[16%]",
"w-[17%]",
"w-[18%]",
"w-[19%]",
"w-[20%]",
"w-[21%]",
"w-[22%]",
"w-[23%]",
"w-[24%]",
"w-[25%]",
"w-[26%]",
"w-[27%]",
"w-[28%]",
"w-[29%]",
"w-[30%]",
"w-[31%]",
"w-[32%]",
"w-[33%]",
"w-[34%]",
"w-[35%]",
"w-[36%]",
"w-[37%]",
"w-[38%]",
"w-[39%]",
"w-[40%]",
"w-[41%]",
"w-[42%]",
"w-[43%]",
"w-[44%]",
"w-[45%]",
"w-[46%]",
"w-[47%]",
"w-[48%]",
"w-[49%]",
"w-[50%]",
"w-[51%]",
"w-[52%]",
"w-[53%]",
"w-[54%]",
"w-[55%]",
"w-[56%]",
"w-[57%]",
"w-[58%]",
"w-[59%]",
"w-[60%]",
"w-[61%]",
"w-[62%]",
"w-[63%]",
"w-[64%]",
"w-[65%]",
"w-[66%]",
"w-[67%]",
"w-[68%]",
"w-[69%]",
"w-[70%]",
"w-[71%]",
"w-[72%]",
"w-[73%]",
"w-[74%]",
"w-[75%]",
"w-[76%]",
"w-[77%]",
"w-[78%]",
"w-[79%]",
"w-[80%]",
"w-[81%]",
"w-[82%]",
"w-[83%]",
"w-[84%]",
"w-[85%]",
"w-[86%]",
"w-[87%]",
"w-[88%]",
"w-[89%]",
"w-[90%]",
"w-[91%]",
"w-[92%]",
"w-[93%]",
"w-[94%]",
"w-[95%]",
"w-[96%]",
"w-[97%]",
"w-[98%]",
"w-[99%]",
"w-[100%]",
],
} satisfies Config;