webtransfer/tailwind.config.js

13 lines
276 B
JavaScript
Raw Normal View History

/** @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`
],
theme: {
extend: {},
},
plugins: [],
}