Conversation
📝 WalkthroughWalkthroughA new manifest file Estimated code review effort🎯 1 (Trivial) | ⏱️ ~2 minutes 🚥 Pre-merge checks | ✅ 3✅ Passed checks (3 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Fix all issues with AI agents
In `@modules/umo-editor.yml`:
- Around line 6-9: There are two identical YAML keys named "website" which
causes the second to override the first and breaks linting; remove the duplicate
by keeping a single "website" entry (preferably the official
https://www.umodoc.com) and either delete the other URL or move it to a
different, appropriate key (e.g., keep "github:
https://github.com/umodoc/editor-nuxt" as-is and remove the extra "website:
https://github.com/umodoc/editor-nuxt" or place that GitHub URL under a key like
"repository" or "source" if you need it distinct).
🔗 Linked issue
❓ Type of change
📚 Description
This PR introduces an official Nuxt module for UMO Editor, making it easy to integrate UMO Editor into Nuxt applications in a clean and idiomatic way.
The module is designed to follow Nuxt module conventions and provide a smooth developer experience for both client-side and SSR environments.
Key features include:
🎯 Motivation
Umo Editor is an open-source document editor based on Vue3 and Tiptap, providing an online editing experience similar to Microsoft Word.
This module removes that friction by providing a first-class Nuxt integration, enabling developers to start using UMO Editor with minimal configuration and predictable behavior.
🧩 Usage Example