blob: 04e27fe6efa08f6d61cdb72b766be9d4a86d7fff [file] [log] [blame]
Skyler Grey7177bbd2023-06-01 03:26:31 +02001const tailwindcss = require('tailwindcss');
2const autoprefixer = require('autoprefixer');
3
4const 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
13module.exports = config;