first commit

This commit is contained in:
LeNei
2023-04-05 21:14:30 +02:00
commit 1f84e6a126
12 changed files with 2047 additions and 0 deletions

45
Dioxus.toml Normal file
View File

@@ -0,0 +1,45 @@
[application]
# App (Project) Name
name = "dioxus-tailwind"
# Dioxus App Default Platform
# desktop, web, mobile, ssr
default_platform = "web"
# `build` & `serve` dist path
out_dir = "dist"
# resource (public) file folder
asset_dir = "public"
[web.app]
# HTML title tag content
title = "dioxus-tailwind"
[web.watcher]
# when watcher trigger, regenerate the `index.html`
reload_html = true
# which files or dirs will be watcher monitoring
watch_path = ["src", "public"]
# include `assets` in web platform
[web.resource]
# CSS style file
style = []
# Javascript code file
script = []
[web.resource.dev]
# Javascript code file
# serve: [dev-server] only
script = []
[application.tools]
tailwindcss = { config = "./tailwind.config.js", input = "./public/tailwind.css" }