-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuno.config.ts
63 lines (62 loc) · 1.39 KB
/
uno.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
import {
defineConfig,
presetAttributify,
presetIcons,
presetTypography,
presetUno,
presetWebFonts,
transformerDirectives,
transformerVariantGroup,
} from 'unocss'
import presetAnimations from 'unocss-preset-animations'
import { presetShadcn } from 'unocss-preset-shadcn'
export default defineConfig({
variants: [
{
// nth-[]:class
name: ':nth-child()',
match: (matcher: string) => {
const match = matcher.match(/^nth-\[(.+?):/)
if (!match)
return matcher
return {
// slice `hover:` prefix and passed to the next variants and rules
matcher: matcher.substring(match[0].length),
selector: s => `${s}:nth-child(${match[1]})`,
}
},
multiPass: true,
},
],
presets: [
presetUno(),
presetAttributify(),
presetIcons({
scale: 1.2,
cdn: 'https://esm.sh/',
}),
presetTypography(),
presetWebFonts({
fonts: {
sans: 'Chivo',
mono: 'Chivo Mono',
},
}),
presetAnimations(),
presetShadcn(),
],
transformers: [
transformerDirectives(),
transformerVariantGroup({ separators: [':'] }),
],
content: {
pipeline: {
include: [
// the default
/\.(vue|svelte|[jt]sx|mdx?|astro|elm|php|phtml|html)($|\?)/,
// include js/ts files
'components/ui/**/*.{js,ts}',
],
},
},
})