- 新增 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>
19 lines
304 B
TOML
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 = []
|