tricoteuses-legifrance/postcss.config.cjs

14 lines
321 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,
2022-08-09 10:44:30 +02:00
tailwindcss(),
// But others, like autoprefixer, need to run after,
2022-08-09 10:44:30 +02:00
autoprefixer,
],
}
2022-08-09 10:44:30 +02:00
module.exports = config