mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-04 07:00:23 +00:00
12 lines
254 B
JavaScript
12 lines
254 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
|
|
corePlugins: {
|
|
preflight: false // This disables Tailwind's base styles
|
|
},
|
|
theme: {
|
|
extend: {}
|
|
},
|
|
plugins: []
|
|
}
|