ReactLearn/tailwind.config.js

12 lines
165 B
JavaScript
Raw Normal View History

2024-11-17 06:04:47 +01:00
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}",
],
theme: {
extend: {},
},
plugins: [],
}