chores/frontend/tailwind.config.js

13 lines
183 B
JavaScript
Raw Permalink Normal View History

/** @type {import('tailwindcss').Config} */
2024-06-24 09:54:51 +00:00
export default {
content: [
2024-06-24 09:54:51 +00:00
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {},
},
plugins: [],
}