-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
57 lines (57 loc) · 1.27 KB
/
tailwind.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
/*
** TailwindCSS Configuration File
**
** Docs: https://tailwindcss.com/docs/configuration
** Default: https://github.com/tailwindcss/tailwindcss/blob/master/stubs/defaultConfig.stub.js
*/
module.exports = {
theme: {
extend: {
height: {
14: '3.5rem',
18: '4.5rem',
22: '5.5rem'
},
padding: {
14: '3.5rem',
18: '4.5rem',
22: '5.5rem'
},
animation: {
appear: 'appear 0.5s'
},
keyframes: {
appear: {
'0%': { opacity: 0 }
}
}
}
},
variants: {},
plugins: [
require('@tailwindcss/typography'),
require('tailwindcss-animatecss')({
classes: ['animate__animated', 'animate__fadeInUp', 'animate__fadeIn'],
settings: {
animatedSpeed: 800
},
variants: ['responsive', 'hover', 'reduced-motion']
})
],
purge: {
// Learn more on https://tailwindcss.com/docs/controlling-file-size/#removing-unused-css
enabled: process.env.NODE_ENV === 'production',
content: [
'content/**/*.md',
'components/**/*.vue',
'layouts/**/*.vue',
'pages/**/*.vue',
'plugins/**/*.js',
'nuxt.config.js'
]
},
future: {
removeDeprecatedGapUtilities: true,
purgeLayersByDefault: true
}
}