mirror of
https://github.com/temporal-community/temporal-ai-agent.git
synced 2026-03-15 14:08:08 +01:00
12 lines
258 B
JavaScript
12 lines
258 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
"./public/index.html",
|
|
"./src/**/*.{js,jsx,ts,tsx}",
|
|
],
|
|
darkMode: "class", // enable dark mode by toggling a .dark class
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
}; |