- 移除 CDN Tailwind,改用本地构建的 style.css - 添加 package.json、tailwind.config.js、input.css 构建配置 - 清理 prd.json、progress.txt 及误创建的文件 - 修复 login.rs 中未使用变量命名 (_token → token) - 更新 .gitignore 排除 node_modules 和 package-lock.json Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
19 lines
273 B
TOML
19 lines
273 B
TOML
[application]
|
|
name = "yggdrasil"
|
|
default_platform = "web"
|
|
out_dir = "dist"
|
|
|
|
[web.app]
|
|
title = "Yggdrasil - Dioxus SSR"
|
|
|
|
[web.watcher]
|
|
watch_path = ["src", "Cargo.toml"]
|
|
|
|
[web.resource]
|
|
style = ["style.css"]
|
|
script = []
|
|
|
|
[web.resource.dev]
|
|
style = ["style.css"]
|
|
script = []
|