mirror of
https://github.com/XShengTech/MEGREZ.git
synced 2026-05-02 12:28:23 +08:00
16 lines
358 B
JavaScript
16 lines
358 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
darkMode: ['selector', '[class*="app-dark"]'],
|
|
content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
|
|
plugins: [require('tailwindcss-primeui')],
|
|
theme: {
|
|
screens: {
|
|
sm: '576px',
|
|
md: '768px',
|
|
lg: '992px',
|
|
xl: '1200px',
|
|
'2xl': '1920px'
|
|
}
|
|
}
|
|
};
|