-
Notifications
You must be signed in to change notification settings - Fork 0
/
uno.config.ts
45 lines (44 loc) · 1.04 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
import { defineConfig, presetIcons, presetUno, transformerDirectives } from 'unocss'
import { FileSystemIconLoader } from '@iconify/utils/lib/loader/node-loaders'
const transformers: any = [
transformerDirectives(),
]
const isDev: boolean = process.env.NODE_ENV === 'development'
export default defineConfig({
content: {
pipeline: {
include: !isDev ? ['pages/**/*.vue', 'components/**/*.vue'] : [],
exclude: ['node_modules', '.git', '.nuxt', '.output'],
},
},
preflights: [
{
getCSS: () => `
* {
padding: 0;
margin: 0;
box-sizing: border-box;
appearance: none;
outline:0;
}
`,
},
],
transformers,
presets: [
presetUno(),
presetIcons({
customizations: {
transform(svg) {
return svg.replace(/fill="[^"]*"/g, 'fill="currentColor"')
},
},
extraProperties: {
display: 'inline-flex',
},
collections: {
custom: FileSystemIconLoader('./assets/svg'),
},
}),
],
})