tricoteuses-legifrance/postcss.config.cjs

14 lines
319 B
JavaScript
Raw Normal View History

2022-08-09 10:44:30 +02:00
const tailwindcss = require("tailwindcss")
const autoprefixer = require("autoprefixer")
const config = {
2022-08-09 10:44:30 +02:00
plugins: [
//Some plugins, like tailwindcss/nesting, need to run before Tailwind,
tailwindcss(),
//But others, like autoprefixer, need to run after,
autoprefixer,
],
}
2022-08-09 10:44:30 +02:00
module.exports = config