Public Access
1
0
Files
11ty-site/tailwind.config.js
giteaadmin abc6ca89e8
Some checks failed
Build and Push Docker Image to Gitea / build-and-push-to-gitea (push) Has been cancelled
fix: tailwind sticky hover
2025-09-03 18:22:08 -04:00

14 lines
238 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./src/**/*.{html,njk,md,js}',
'./.eleventy.js',
],
theme: {
extend: {},
},
future: {
hoverOnlyWhenSupported: true,
},
plugins: [],
};