chore: initialize the Dioxus project

This commit is contained in:
Matouš Volf
2024-08-15 15:09:09 +02:00
parent 4d7c5df56b
commit 9e38fdbbeb
16 changed files with 2434 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: [],
};