[READ-ONLY] Mirror of https://github.com/mrgnw/ananas. learn multiple languages at once
ananas.xcc.es
1const 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(),
8 //But others, like autoprefixer, need to run after,
9 autoprefixer
10 ]
11};
12
13module.exports = config;