mirror of
https://github.com/kevin-DL/comedy-video-lib.git
synced 2026-01-16 04:54:39 +00:00
Home Page
- Installed TailwindUI - Changed the layout - Added a new breakpoint
This commit is contained in:
31
tailwind.config.js
Normal file
31
tailwind.config.js
Normal file
@@ -0,0 +1,31 @@
|
||||
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',
|
||||
],
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user