gradio/js/workbench/postcss.config.cjs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
208 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
2022-02-25 20:24:32 +08:00
module.exports = {
plugins: [nested, tailwindcss(), autoprefixer]
2022-02-22 20:20:28 +08:00
};