yggdrasil/Dioxus.toml
xfy f6d60520eb 集成 Tiptap Markdown 编辑器到文章撰写页面
- 新增 libs/tiptap-editor/ 打包子项目(Tiptap Core + StarterKit + Markdown)
- 构建产物输出到 public/tiptap/
- 替换原有的 textarea + pulldown_cmark 预览为 WYSIWYG 编辑器
- Makefile 新增 build-editor target
- Dioxus.toml 引入 editor.js 和 editor.css

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-26 17:46:04 +08:00

19 lines
304 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", "/tiptap/editor.css"]
script = ["/tiptap/editor.js"]
[web.resource.dev]
style = []
script = []