ness-template-typescript
Version:
The typescript template for Create Ness App.
23 lines (22 loc) • 864 B
JavaScript
module.exports = {
"plugins": [
{
name: 'tailwind',
config: {
darkMode: ['class'],
theme: {
screens: {
xs: { max: '590px' }, // Mobile (iPhone 3 - iPhone XS Max).
sm: { min: '576px', max: '897px' }, // Mobile (matches max: iPhone 11 Pro Max landscape @ 896px).
md: { min: '898px', max: '1199px' }, // Tablet (matches max: iPad Pro @ 1112px).
lg: { min: '1200px' }, // Desktop smallest.
xl: { min: '1159px' }, // Desktop wide.
xxl: { min: '1359px' } // Desktop widescreen.
}
},
content: ["./src/**/*.{html,js,ts,tsx}"],
plugins: [],
}
}
]
}