We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent effc0fa commit bff407bCopy full SHA for bff407b
docusaurus.config.ts
@@ -183,7 +183,8 @@ const config: Config = {
183
name: "docusaurus-tailwindcss",
184
configurePostCss(postcssOptions) {
185
// Use the new PostCSS plugin for Tailwind CSS
186
- postcssOptions.plugins.push(require("@tailwindcss/postcss"))
+ postcssOptions.plugins.push(require("tailwindcss")) // Use the main tailwindcss package
187
+ postcssOptions.plugins.push(require("autoprefixer")) // Add autoprefixer
188
return postcssOptions
189
},
190
}
0 commit comments