mirror of
https://github.com/kevin-DL/comedy-video-lib.git
synced 2026-01-11 19:04:27 +00:00
32 lines
644 B
JavaScript
32 lines
644 B
JavaScript
module.exports = {
|
|
future: {
|
|
removeDeprecatedGapUtilities: true,
|
|
purgeLayersByDefault: true,
|
|
},
|
|
theme: {
|
|
screens: {
|
|
dark: { raw: '(prefers-color-scheme: dark)' },
|
|
sm: '640px',
|
|
md: '768px',
|
|
lg: '1024px',
|
|
xl: '1280px',
|
|
xxl: '1920px',
|
|
},
|
|
},
|
|
variants: {},
|
|
plugins: [require('@tailwindcss/ui')],
|
|
purge: {
|
|
enabled: process.env.NODE_ENV === 'production',
|
|
content: [
|
|
'components/**/*.vue',
|
|
'layouts/**/*.vue',
|
|
'pages/**/*.vue',
|
|
'plugins/**/*.js',
|
|
'nuxt.config.js',
|
|
// TypeScript
|
|
'plugins/**/*.ts',
|
|
'nuxt.config.ts',
|
|
],
|
|
},
|
|
}
|