(postcssOptions)
| 34 | return { |
| 35 | name: "docusaurus-tailwindcss", |
| 36 | configurePostCss(postcssOptions) { |
| 37 | // Appends TailwindCSS and AutoPrefixer. |
| 38 | postcssOptions.plugins.push(require("tailwindcss")); |
| 39 | postcssOptions.plugins.push(require("autoprefixer")); |
| 40 | return postcssOptions; |
| 41 | }, |
| 42 | }; |
| 43 | }, |
| 44 | ], |
nothing calls this directly
no outgoing calls
no test coverage detected