-
-
Notifications
You must be signed in to change notification settings - Fork 79
Expand file tree
/
Copy pathtailwind.config.js
More file actions
28 lines (28 loc) · 634 Bytes
/
tailwind.config.js
File metadata and controls
28 lines (28 loc) · 634 Bytes
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
/**
* NOTE:
* https://github.com/Acidic9/prettier-plugin-tailwind/issues/29
*/
module.exports = {
mode: process.env.NODE_ENV ? 'jit' : undefined,
purge: [
'./src/pages/**/*.{js,ts,jsx,tsx}',
'./src/components/**/*.{js,ts,jsx,tsx}',
'./src/modules/**/*.{js,ts,jsx,tsx}',
],
darkMode: false, // or 'media' or 'class'
theme: {
maxWidth: {
container: '82.5em',
},
},
variants: {
extend: {},
},
plugins: [
require('@tailwindcss/forms'),
require('@tailwindcss/line-clamp'),
require('@tailwindcss/typography'),
require('@tailwindcss/aspect-ratio'),
],
prefix: 'tw-',
};