mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
10 lines
227 B
JavaScript
10 lines
227 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
// eslint-disable-next-line no-undef
|
|
module.exports = {
|
|
content: ["./src/**/*.{ts,tsx,js,jsx}", "./stories/**/*.{ts,tsx,js,jsx}"],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
};
|