awesome-django/tailwind.config.js

23 lines
402 B
JavaScript
Raw Normal View History

2020-10-01 22:39:05 -05:00
module.exports = {
2021-04-08 21:58:10 -05:00
// mode: 'jit',
2020-10-01 22:39:05 -05:00
future: {
removeDeprecatedGapUtilities: true,
purgeLayersByDefault: true,
},
purge: {
enabled: process.env.JEKYLL_ENV == "production",
2020-10-01 22:39:05 -05:00
mode: 'all',
content: [
'**/*.html'
2020-10-01 22:39:05 -05:00
],
},
plugins: [
require("@tailwindcss/typography"),
require("tailwindcss-debug-screens"),
],
theme: {
extend: {},
},
variants: {},
}