-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathheadwind.config.ts
More file actions
42 lines (42 loc) · 887 Bytes
/
headwind.config.ts
File metadata and controls
42 lines (42 loc) · 887 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
33
34
35
36
37
38
39
40
41
42
export default {
content: [
'./voide.stx',
'./hello-world.stx',
'./simple.stx',
'./demo.stx',
'./app.stx',
'./components/**/*.stx',
],
output: './dist/voide.css',
minify: false,
preflight: true,
safelist: [
'border-solid',
'bg-black',
'opacity-60',
'appearance-none',
'animate-pulse',
'animate-bounce',
'bg-slate-100',
'from-violet-600/20',
'from-cyan-600/20',
'from-emerald-600/20',
'from-rose-600/20',
'to-violet-400/20',
'to-cyan-400/20',
'to-emerald-400/20',
'to-rose-400/20',
'from-violet-500',
'from-cyan-500',
'from-emerald-500',
'from-rose-500',
'to-violet-400',
'to-cyan-400',
'to-emerald-400',
'to-rose-400',
'hover:border-violet-500/50',
'hover:border-cyan-500/50',
'hover:border-emerald-500/50',
'hover:border-rose-500/50',
],
}