Fixing paths for tailwindcss

This commit is contained in:
Barbagus42 2023-11-07 09:24:11 +01:00
parent 766e974420
commit 77eb3d7444
2 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,7 @@ disponibles:
`$ python3 data/update.py`
### Recompilation continue du fichier `css`
`$ tailwindcss -i app/static/src/tw.css -o app/static/css/main.css --watch`
`$ tailwindcss -i ter/static/src/tw.css -o ter/static/css/main.css --watch`
### Démarrage du serveur de développement
`$ uvicorn ter.main:app --reload`

View File

@ -1,5 +1,5 @@
module.exports = {
content: ["./app/templates/**/*.html"],
content: ["./ter/templates/**/*.html"],
theme: {
extend: {},
},