Monelia-Nails/tailwind.config.ts

26 lines
643 B
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import type { Config } from 'tailwindcss'
const config: Config = {
content: [
"./src/**/*.{js,ts,jsx,tsx}",
"./app/**/*.{js,ts,jsx,tsx}", // pour les projets Next 13+
"./pages/**/*.{js,ts,jsx,tsx}", // si tu nes pas en app directory
],
theme: {
extend: {
screens: {
mobile: '640px',
tablet: '768px',
laptop: '1024px',
desktop: '1280px',
big: '1536px',
fhd: '1920px',
qhd: '2560px',
uhd: '3840px',
},
},
},
}
export default config