Skip to content

Commit 44641c8

Browse files
committed
feat: Create tailwind plugin for docusaurus in cursorless-org-docs
1 parent 36e7471 commit 44641c8

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
module.exports = function tailwindPlugin(context, options) {
2+
return {
3+
name: "tailwind-plugin",
4+
configurePostCss(postcssOptions) {
5+
postcssOptions.plugins.push(require("tailwindcss"));
6+
return postcssOptions;
7+
},
8+
};
9+
};

0 commit comments

Comments
 (0)