Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/leonardofaria/bento.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'assets/css/tailwind.config.js')
-rw-r--r--assets/css/tailwind.config.js15
1 files changed, 12 insertions, 3 deletions
diff --git a/assets/css/tailwind.config.js b/assets/css/tailwind.config.js
index ac6d7f2..0ad9a63 100644
--- a/assets/css/tailwind.config.js
+++ b/assets/css/tailwind.config.js
@@ -1,4 +1,16 @@
+const themeDir = __dirname + '/../../';
+
module.exports = {
+ purge: {
+ content: [
+ './layouts/**/*.html',
+ './content/**/*.md',
+ './content/**/*.html',
+ themeDir + 'layouts/**/*.html',
+ themeDir + 'exampleSite/content/**/*.html',
+ themeDir + 'exampleSite/content/**/*.md',
+ ],
+ },
theme: {
fontFamily: {
sans: [
@@ -38,7 +50,4 @@ module.exports = {
plugins: [
require('@tailwindcss/ui'),
],
- future: {
- removeDeprecatedGapUtilities: true,
- },
}