forked from github/plane
23 lines
372 B
JavaScript
23 lines
372 B
JavaScript
|
module.exports = {
|
||
|
mode: "jit",
|
||
|
purge: [
|
||
|
"./pages/**/*.tsx",
|
||
|
"./components/**/*.tsx",
|
||
|
"./layouts/**/*.tsx",
|
||
|
"./ui/**/*.tsx"
|
||
|
],
|
||
|
darkMode: false, // or 'media' or 'class'
|
||
|
theme: {
|
||
|
extend: {
|
||
|
colors: {},
|
||
|
gridTemplateRows: {
|
||
|
10: "repeat(10,minmax(0, 1fr))"
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
variants: {
|
||
|
extend: {}
|
||
|
},
|
||
|
plugins: []
|
||
|
};
|