Files
32c689dfc5cef1233e3e99dd39137fd3d0904051
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: [],
|
|||
}
|