build: move the Tailwind config to the source directory

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

View File

@ -0,0 +1,9 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
mode: "all",
content: ["./src/**/*.{rs,html,css}", "./dist/**/*.html"],
theme: {
extend: {},
},
plugins: [],
};