blob: e48cff588de3bbd2aa7250fe710a332ba01c811f (
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;
|