mirror of
https://github.com/wsvincent/awesome-django.git
synced 2024-11-23 20:11:09 +00:00
c67a1b8324
Fixes #100
22 lines
384 B
JavaScript
22 lines
384 B
JavaScript
module.exports = {
|
|
future: {
|
|
removeDeprecatedGapUtilities: true,
|
|
purgeLayersByDefault: true,
|
|
},
|
|
purge: {
|
|
enabled: process.env.JEKYLL_ENV == "production",
|
|
mode: 'all',
|
|
content: [
|
|
'**/*.html'
|
|
],
|
|
},
|
|
plugins: [
|
|
require("@tailwindcss/typography"),
|
|
require("tailwindcss-debug-screens"),
|
|
],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
variants: {},
|
|
}
|