Set up a fast, reproducible local development workflow for Obsidian plugins with hot-reload and testing.
obsidian-install-auth setupFor full implementation details and code examples, load:
references/implementation-guide.md
| Error | Cause | Solution |
|---|---|---|
| Plugin not reloading | BRAT not configured | Install and enable BRAT plugin |
| Symlink not working | Permission denied | Run as admin (Windows) |
| Build not triggering | Watch mode not started | Run npm run dev |
| Source maps not working | Disabled in config | Set sourcemap: "inline" |
| TypeScript errors | Missing types | Run npm install |
See obsidian-sdk-patterns for production-ready code patterns.
Basic usage: Apply obsidian local dev loop to a standard project setup with default configuration options.
Advanced scenario: Customize obsidian local dev loop for production environments with multiple constraints and team-specific requirements.