-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpostcss.config.cjs
More file actions
40 lines (39 loc) · 1.02 KB
/
Copy pathpostcss.config.cjs
File metadata and controls
40 lines (39 loc) · 1.02 KB
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
/* eslint-disable no-undef */
const purgecss = require("@fullhuman/postcss-purgecss");
module.exports = () => ({
plugins:
process.env.NODE_ENV === "production"
? [
purgecss({
content: ["dist/index.html", "dist/assets/*.js"],
css: ["dist/assets/*.css"],
safelist: [
/-(leave|enter|appear)(|-(to|from|active))$/,
/^col-/,
/^offset-/,
/^btn-/,
/^badge-/,
/^border-/,
/^bg-/,
/^shadow-/,
/^border/,
/^text/,
/^list-group-/,
/^input-group-/,
/^flag-/,
/^fa-/,
/^table-/,
/^form-control-/,
/^row-cols-/,
/^container-/,
/^fade-height/,
/^alert-/,
/^toast-/,
/^chip-/,
/^sidenav-/,
],
output: "dist/assets",
}),
]
: [],
});