gradio/ui/packages/workbench/postcss.config.cjs

16 lines
368 B
JavaScript
Raw Normal View History

2022-02-22 20:20:28 +08:00
const tailwindcss = require("tailwindcss");
const autoprefixer = require("autoprefixer");
2022-02-23 19:17:41 +08:00
const nested = require("tailwindcss/nesting");
2022-02-22 20:20:28 +08:00
const config = {
plugins: [
2022-02-23 19:17:41 +08:00
nested,
2022-02-22 20:20:28 +08:00
//Some plugins, like tailwindcss/nesting, need to run before Tailwind,
tailwindcss(),
//But others, like autoprefixer, need to run after,
autoprefixer
]
};
module.exports = config;