build: move the Tailwind config to the source directory

This commit is contained in:
Matouš Volf 2024-08-18 22:26:13 +02:00
parent 40985ca7bb
commit 5117fb2039
2 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@
"tailwindcss": "^3.4.6" "tailwindcss": "^3.4.6"
}, },
"scripts": { "scripts": {
"build": "tailwindcss -i src/styles/tailwind.css -o assets/styles/tailwind_output.css", "build": "tailwindcss -c src/styles/tailwind.config.js -i src/styles/tailwind.css -o assets/styles/tailwind_output.css",
"watch": "npm run build -- --watch" "watch": "npm run build -- --watch"
} }
} }