10 lines
406 B
JavaScript
10 lines
406 B
JavaScript
module.exports = {
|
|
plugins: [
|
|
require('postcss-import'),
|
|
require('tailwindcss'),
|
|
require("autoprefixer"), // example of plugin you might use
|
|
...(process.env.JEKYLL_ENV == "production" // example of only using a plugin in production
|
|
? [require("cssnano")({ preset: "default" })]
|
|
: [])
|
|
]
|
|
}; |