Add tailwind build step

This commit is contained in:
Peter Stockings
2026-01-29 09:30:51 +11:00
parent 71315eb719
commit 04fe00412a
7 changed files with 195 additions and 2 deletions

13
tailwind.config.js Normal file
View File

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