Files
copilotkit__copilotkit/packages/v1/react-textarea/postcss.config.cjs
Tyler Slaton 6fb4f6518c fix(css): address imcompat with CJS
Signed-off-by: Tyler Slaton <tyler@copilotkit.ai>
2026-02-26 19:50:26 -08:00

13 lines
294 B
JavaScript

// If you want to use other PostCSS plugins, see the following:
// https://tailwindcss.com/docs/using-with-preprocessors
module.exports = {
plugins: {
tailwindcss: {},
autoprefixer: {},
"postcss-prefix-selector": {
prefix: ".copilot-kit-textarea-css-scope",
},
},
};