feat: with base app

This commit is contained in:
2023-03-05 22:56:04 +01:00
parent f8f0a832e9
commit c3f8679863
17 changed files with 3578 additions and 192 deletions

View File

@@ -7,3 +7,18 @@ install_crate = "cargo-all-features"
command = "cargo"
args = ["+nightly", "check-all-features"]
install_crate = "cargo-all-features"
[tasks.watch_tailwind]
command = "npx"
args = [
"tailwindcss",
"-i",
"./input.css",
"-o",
"./style/output.css",
"--watch",
]
[tasks.build_tailwind]
command = "npx"
args = ["tailwindcss", "-i", "./input.css", "-o", "./style/output.css"]