website/postcss.config.js
2022-01-06 07:43:21 +02:00

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" })]
: [])
]
};