2024-11-15 15:55:40 +01:00
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
|
|
module.exports = {
|
2024-11-15 17:14:45 +01:00
|
|
|
content: [
|
|
|
|
"./src/**/*.{html,js,jsx,vue}", // Fichiers dans le dossier `src`
|
|
|
|
"./templates/**/*.{html,php}", // Fichiers dans le dossier `templates`
|
|
|
|
],
|
2024-11-15 15:55:40 +01:00
|
|
|
theme: {
|
|
|
|
extend: {},
|
|
|
|
},
|
|
|
|
plugins: [],
|
|
|
|
}
|
|
|
|
|