website/tailwind.config.js

19 lines
309 B
JavaScript
Raw Normal View History

2021-07-17 14:41:01 +02:00
module.exports = {
mode: 'jit',
2021-07-17 14:41:01 +02:00
purge: {
enabled: process.env.JEKYLL_ENV == "production",
content:[
'./_includes/**/*.html',
'./_layouts/**/*.html',
'./_posts/*.md',
'./*.html',
],
},
darkMode: false,
theme: {
extend: {}
},
variants: {},
plugins: [],
}