feat: initial dioxus setup

This commit is contained in:
2025-05-23 14:14:53 +02:00
parent 1a4e7c6ad9
commit 0587099cf7
13 changed files with 5828 additions and 0 deletions

9
tailwind.config.js Normal file
View File

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