-
Notifications
You must be signed in to change notification settings - Fork 0
/
uno.config.ts
109 lines (104 loc) · 2.57 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
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
// uno.config.js
import { presetAnu, presetIconExtraProperties } from "anu-vue";
import { presetThemeDefault } from "@anu-vue/preset-theme-default";
import {
defineConfig,
presetIcons,
presetUno,
transformerCompileClass,
} from "unocss";
// import { prisma } from "./server/prisma";
// const players = await prisma.player.findMany({
// select: {
// country: true,
// },
// where: {
// country: {
// not: null,
// },
// },
// });
// const safelist = Array.from(
// new Set(players.map((player) => player.country.toLowerCase()))
// ).map((el) => `i-flag-${el}-4x3`);
export default defineConfig({
presets: [
presetUno(),
presetIcons({
scale: 1.2,
extraProperties: presetIconExtraProperties,
}),
// anu-vue preset
presetAnu(),
// default theme preset
presetThemeDefault(),
],
transformers: [
transformerCompileClass({
trigger: "$",
classPrefix: "",
}),
],
include: [/.*\/anu-vue\.js(.*)?$/, "./**/*.vue", "./**/*.md"],
safelist: [
"i-flag-us-4x3",
"i-flag-ca-4x3",
"i-flag-cr-4x3",
"i-flag-cl-4x3",
"i-flag-mx-4x3",
"i-flag-pr-4x3",
"i-flag-pl-4x3",
"i-flag-nz-4x3",
"i-flag-fr-4x3",
"i-flag-gb-4x3",
"i-flag-au-4x3",
"i-flag-de-4x3",
"i-flag-jp-4x3",
"i-flag-br-4x3",
"i-flag-co-4x3",
"i-flag-ru-4x3",
"i-flag-nl-4x3",
"i-flag-es-4x3",
"i-flag-at-4x3",
"i-flag-bj-4x3",
"i-flag-sa-4x3",
"i-flag-se-4x3",
"i-flag-il-4x3",
"i-flag-ar-4x3",
"i-flag-be-4x3",
"i-flag-ie-4x3",
"i-flag-lc-4x3",
"i-flag-id-4x3",
"i-flag-ch-4x3",
"i-flag-kw-4x3",
"i-flag-do-4x3",
"i-flag-it-4x3",
"i-flag-ve-4x3",
"i-flag-pe-4x3",
"i-flag-bd-4x3",
"i-flag-cn-4x3",
"i-flag-tt-4x3",
"i-flag-no-4x3",
"i-flag-pt-4x3",
"i-flag-bt-4x3",
"i-flag-za-4x3",
"i-flag-eg-4x3",
"i-flag-af-4x3",
"i-flag-uy-4x3",
"i-flag-ai-4x3",
"i-flag-bh-4x3",
"i-flag-um-4x3",
"i-flag-aq-4x3",
"i-flag-jm-4x3",
"i-flag-ma-4x3",
"i-flag-lu-4x3",
"i-flag-ae-4x3",
"i-flag-ph-4x3",
"i-flag-gr-4x3",
"i-flag-fi-4x3",
"i-flag-dz-4x3",
"i-flag-ug-4x3",
"i-flag-hr-4x3",
"i-flag-sg-4x3",
],
});