forked from chaskiq/chaskiq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
postcss.config.js
38 lines (34 loc) · 1004 Bytes
/
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
// postcss.config.js
let environment = {
plugins: [
require('tailwindcss')('./app/javascript/src/styles/tailwind.js'),
require('autoprefixer'),
require('postcss-import'),
require('postcss-flexbugs-fixes'),
require('postcss-preset-env')({
autoprefixer: {
flexbox: 'no-2009'
},
stage: 3
}),
]
}
// Only run PurgeCSS in production (you can also add staging here)
//if (process.env.RAILS_ENV === "production") {
//environment.plugins.push(
// require('@fullhuman/postcss-purgecss')({
// content: [
// './app/**/*.html.erb',
// './app/**/*.erb',
// './app/javascript/**/*.scss',
// './app/helpers/**/*.rb',
// './app/javascript/**/*.js',
// './app/javascript/**/*.jsx',
// './node_modules/rc-tooltip/**/*.js',
// './node_modules/rc-tooltip/**/*.css',
// ],
// defaultExtractor: content => content.match(/[A-Za-z0-9-_:/]+/g) || []
// })
// )
//}
module.exports = environment