-
Notifications
You must be signed in to change notification settings - Fork 10
/
postcss.config.js
51 lines (51 loc) · 1.05 KB
/
postcss.config.js
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
module.exports = {
plugins: {
"@fullhuman/postcss-purgecss": {
content: ["./layouts/**/*.html", "./public/**/index.html", "./content/**/*.md"],
safelist: [
"arrow",
"autocomplete-suggestion",
"autocomplete-suggestions",
"bg-light",
"bg-white",
"btn",
"btn-feedback",
"btn-outline-dark",
"btn-outline-primary",
"btn-sm",
"chroma",
"col",
"col-12",
"col-6",
"container",
"container-fluid",
"cookie-policy-description",
"d-block",
"d-inline-block",
"footer",
"gh",
"highlight",
"language-txt",
"main",
"mt-md-0",
"mt-sm-0",
"navbar",
"onetrust*",
"opacity-75",
"ot-*",
"row",
"row-cols-xl-7",
"sr-only",
"table",
"td",
"text-dark",
"text-light",
"text-white",
"thead",
"w-50",
"w-100",
],
},
autoprefixer: {},
},
};