Files
alapatch/tailwind.config.js
cvancau 7803fd19a0
Deploy to home / deploy (push) Failing after 6s
Actualiser tailwind.config.js
2026-08-09 16:23:14 +02:00

17 lines
521 B
JavaScript

module.exports = {
purge: ['./src/**/*.{js,jsx,ts,tsx}', './public/index.html'],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
fontFamily: {
sans:
'"Source Sans Pro", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"',
},
},
},
variants: {
extend: {},
},
plugins: [require('@tailwindcss/forms')],
};