-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpostcss.config.cjs
More file actions
39 lines (38 loc) · 957 Bytes
/
postcss.config.cjs
File metadata and controls
39 lines (38 loc) · 957 Bytes
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
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',
}),*/
]
: [],
});