Files
workout/tailwind.config.js
2026-01-29 09:30:51 +11:00

14 lines
248 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./templates/**/*.html",
"./static/js/**/*.js",
"./features/**/*.py",
"./routes/**/*.py"
],
theme: {
extend: {},
},
plugins: [],
}