Files
1dae217f1a365395304c97bac5ffd1765f7cc722
12 lines
182 B
JavaScript
12 lines
182 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|||
export default {
|
|||
content: [
|
|||
"./index.html",
|
|||
"./src/**/*.{js,ts,jsx,tsx}",
|
|||
],
|
|||
theme: {
|
|||
extend: {},
|
|||
},
|
|||
plugins: [],
|
|||
}
|