forked from enochj316/spacebookx
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpostcss.config.js
More file actions
23 lines (23 loc) · 757 Bytes
/
postcss.config.js
File metadata and controls
23 lines (23 loc) · 757 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// postcss.config.js
module.exports = {
plugins: [
require('tailwindcss'),
require('autoprefixer'),
require('@fullhuman/postcss-purgecss')({
content: [
'./public/login.html',
'./public/signup.html',
'./views/layouts/_friends.handlebars',
'./views/layouts/_home.handlebars',
'./views/layouts/_user.handlebars',
'./views/friends.handlebars',
'./views/home.handlebars',
'./views/user.handlebars',
'./views/partials/friends/friends-block.handlebars',
'./views/partials/friends/friends-list.handlebars',
'./views/partials/moments/moment-block.handlebars',
],
defaultExtractor: content => content.match(/[A-Za-z0-9-_:/]+/g) || []
}),
]
}