19 lines
295 B
JavaScript
19 lines
295 B
JavaScript
|
module.exports = {
|
||
|
mode: 'jit',
|
||
|
darkMode: 'media',
|
||
|
content: [
|
||
|
'./_includes/**/*.html',
|
||
|
'./_layouts/**/*.html',
|
||
|
'./_posts/*.html',
|
||
|
'./*.html',
|
||
|
],
|
||
|
theme: {
|
||
|
extend: {},
|
||
|
},
|
||
|
variants: {
|
||
|
extend: {},
|
||
|
},
|
||
|
plugins: [
|
||
|
require('@tailwindcss/typography'),
|
||
|
],
|
||
|
}
|