preciazo/sitio/postcss.config.cjs

14 lines
323 B
JavaScript
Raw Permalink Normal View History

2023-12-23 18:59:09 +00:00
const tailwindcss = require("tailwindcss");
const autoprefixer = require("autoprefixer");
2023-12-23 18:57:23 +00:00
const config = {
2023-12-23 18:59:09 +00:00
plugins: [
//Some plugins, like tailwindcss/nesting, need to run before Tailwind,
tailwindcss(),
//But others, like autoprefixer, need to run after,
autoprefixer,
],
2023-12-23 18:57:23 +00:00
};
module.exports = config;