mirror of
https://git.v0id.ovh/n3wt-innov/n3wt-school.git
synced 2026-01-28 15:33:22 +00:00
11 lines
250 B
JavaScript
11 lines
250 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
'./src/**/*.{js,jsx,ts,tsx}', // Ajustez ce chemin selon la structure de votre projet
|
|
],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [require('@tailwindcss/forms')],
|
|
};
|