blob: fe10e55a833c6a8da26f8c7ffa71246db8d48c44 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
const tailwindcss = require('tailwindcss');
const autoprefixer = require('autoprefixer');
const config = {
plugins: [
//Some plugins, like tailwindcss/nesting, need to run before Tailwind,
tailwindcss(),
//But others, like autoprefixer, need to run after,
autoprefixer
]
};
module.exports = config;
|