blakerain.com/postcss.config.js
Blake Rain 05096de5ff
Some checks failed
check / check (push) Failing after 18s
feat: changover to using hugo
2024-06-01 01:10:49 +01:00

10 lines
244 B
JavaScript

const tailwind = require("tailwindcss")("./tailwind.config.js");
const autoprefixer = require("autoprefixer");
module.exports = {
plugins: [
tailwind,
...(process.env.HUGO_ENVIRONMENT === "production" ? [autoprefixer] : []),
],
};