Files
ichiroku/postcss.config.cjs
0nepeop1e 246bef3b55
All checks were successful
release / release (push) Successful in 1m9s
init
2024-08-09 15:59:23 +08:00

16 lines
408 B
JavaScript

const tailwindcss = require('tailwindcss');
const nesting = require('tailwindcss/nesting');
const autoprefixer = require('autoprefixer');
const config = {
plugins: [
nesting(),
//Some plugins, like tailwindcss/nesting, need to run before Tailwind,
tailwindcss(),
//But others, like autoprefixer, need to run after,
autoprefixer
]
};
module.exports = config;