mirror of
https://github.com/baptisteArno/typebot.io.git
synced 2026-06-19 21:04:33 +08:00
Introducing the new AutocompleteForgeInput that uses the Combobox component from Ark UI. Also consolidates the theming config in ui package
8 lines
243 B
TypeScript
8 lines
243 B
TypeScript
import type { Config } from "tailwindcss";
|
|
import sharedConfig from "../../packages/ui/tailwind.config";
|
|
|
|
export default {
|
|
presets: [sharedConfig],
|
|
content: ["src/**/*.{ts,tsx}", "../../packages/ui/src/**/*.{ts,tsx}"],
|
|
} satisfies Config;
|