Files
Frontend/tailwind.config.js
2025-10-13 01:20:15 +02:00

11 lines
182 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: [
'./index.html',
'./src/**/*.{vue,js,ts,jsx,tsx}'
],
theme: {
extend: {}
},
plugins: []
}