Files
copilotkit__copilotkit/packages/v1/react-textarea/tailwind.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

10 lines
301 B
JavaScript

const sharedConfig = require("tailwind-config/tailwind.config.js");
module.exports = {
// prefix ui lib classes to avoid conflicting with the app
// prefix: "ui-",
mode: "jit",
presets: [sharedConfig],
purge: sharedConfig.content, // Use the 'content' from the shared config for purging
};