mirror of
https://github.com/sakaljurgis/best-choice.git
synced 2026-09-07 08:23:31 +00:00
12 lines
200 B
TypeScript
12 lines
200 B
TypeScript
import type { Config } from 'tailwindcss';
|
|
|
|
const config: Config = {
|
|
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
|
|
theme: {
|
|
extend: {}
|
|
},
|
|
plugins: []
|
|
};
|
|
|
|
export default config;
|