Files
temporal-ai-agent/frontend/tailwind.config.js
Steve Androulakis 93ec96a406 basic react API
2025-01-02 18:05:28 -08:00

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: [],
};