webs / tailwind.config.js
Aqso's picture
Create tailwind.config.js
ee10b00 verified
raw
history blame contribute delete
182 Bytes
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {},
},
plugins: [],
}