trifid/tfweb/postcss.config.cjs

13 lines
320 B
JavaScript
Raw Normal View History

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