mirror of
https://github.com/gradio-app/gradio.git
synced 2024-12-27 02:30:17 +08:00
8 lines
208 B
JavaScript
8 lines
208 B
JavaScript
const tailwindcss = require("tailwindcss");
|
|
const autoprefixer = require("autoprefixer");
|
|
const nested = require("tailwindcss/nesting");
|
|
|
|
module.exports = {
|
|
plugins: [nested, tailwindcss(), autoprefixer]
|
|
};
|