mirror of
https://github.com/wsvincent/awesome-django.git
synced 2025-02-07 09:00:57 +00:00
22 lines
390 B
JavaScript
22 lines
390 B
JavaScript
|
module.exports = {
|
||
|
future: {
|
||
|
removeDeprecatedGapUtilities: true,
|
||
|
purgeLayersByDefault: true,
|
||
|
},
|
||
|
purge: {
|
||
|
enabled: false, //process.env.JEKYLL_ENV == "production",
|
||
|
mode: 'all',
|
||
|
content: [
|
||
|
'*.html'
|
||
|
],
|
||
|
},
|
||
|
plugins: [
|
||
|
require("@tailwindcss/typography"),
|
||
|
require("tailwindcss-debug-screens"),
|
||
|
],
|
||
|
theme: {
|
||
|
extend: {},
|
||
|
},
|
||
|
variants: {},
|
||
|
}
|