mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
6fb4f6518c
Signed-off-by: Tyler Slaton <tyler@copilotkit.ai>
10 lines
301 B
JavaScript
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
|
|
};
|