website/postcss.config.js

10 lines
406 B
JavaScript
Raw Normal View History

2021-07-17 14:41:01 +02:00
module.exports = {
2022-01-06 07:43:21 +02:00
plugins: [
2021-07-17 14:41:01 +02:00
require('postcss-import'),
require('tailwindcss'),
2022-01-06 07:43:21 +02:00
require("autoprefixer"), // example of plugin you might use
...(process.env.JEKYLL_ENV == "production" // example of only using a plugin in production
2021-07-17 14:41:01 +02:00
? [require("cssnano")({ preset: "default" })]
: [])
]
};