build: update tailwind config to include TypeScript sources

- Add ./web/src/**/*.ts to tailwind content paths
- Regenerate CSS with updated config
This commit is contained in:
2026-02-21 00:59:51 -05:00
parent b5899af3c3
commit 9a09161f24
2 changed files with 3 additions and 2 deletions
+2 -1
View File
@@ -3,7 +3,8 @@ import type { Config } from 'tailwindcss';
const config: Config = {
content: [
"./templates/**/*.{templ,html}",
"./web/static/**/*.{html,js}"
"./web/static/**/*.{html,js}",
"./web/src/**/*.ts"
],
safelist: [
'theme-tokyo-night',
+1 -1
View File
File diff suppressed because one or more lines are too long