fork of hey-api/openapi-ts because I need some additional things
1import type { Config } from 'tailwindcss';
2
3export default {
4 content: [
5 './pages/**/*.{js,ts,jsx,tsx,mdx}',
6 './components/**/*.{js,ts,jsx,tsx,mdx}',
7 './app/**/*.{js,ts,jsx,tsx,mdx}',
8 ],
9 plugins: [],
10 theme: {
11 extend: {
12 colors: {
13 background: 'var(--background)',
14 foreground: 'var(--foreground)',
15 },
16 },
17 },
18} satisfies Config;