mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-11-10 01:20:47 +03:00
17 lines
418 B
JavaScript
17 lines
418 B
JavaScript
const tailwindcss = require('tailwindcss');
|
|
const autoprefixer = require('autoprefixer');
|
|
const nested = require('tailwindcss/nesting');
|
|
|
|
const config = {
|
|
plugins: [
|
|
//Makes it easier to define .dark theme classes
|
|
nested,
|
|
//Some plugins, like tailwindcss/nesting, need to run before Tailwind,
|
|
tailwindcss(),
|
|
//But others, like autoprefixer, need to run after,
|
|
autoprefixer
|
|
]
|
|
};
|
|
|
|
module.exports = config;
|