Skyler Grey | 51e9e63 | 2023-06-03 10:20:11 +0200 | [diff] [blame] | 1 | const tailwindcss = require('tailwindcss'); |
2 | const autoprefixer = require('autoprefixer'); | ||||
3 | |||||
4 | const config = { | ||||
5 | plugins: [ | ||||
6 | //Some plugins, like tailwindcss/nesting, need to run before Tailwind, | ||||
7 | tailwindcss(), //But others, like autoprefixer, need to run after, | ||||
8 | autoprefixer, | ||||
9 | autoprefixer | ||||
10 | ] | ||||
11 | }; | ||||
12 | |||||
13 | module.exports = config; |