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 6c95d36361
commit afef3d5f84
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: [],
};