mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-09-19 05:12:16 +03:00
MarkdownMessage.tsx and other client components import remark-gfm directly, but it was only present transitively via fumadocs-mdx (a devDependency). npm's hoisting happens to resolve it, masking the issue, but pnpm's strict node_modules isolation fails with "Module not found: Can't resolve 'remark-gfm'" since the package was never declared as a direct dependency of the app. Add it explicitly to package.json/package-lock.json and the supply-chain dependency allowlist. Co-authored-by: marioschoenert-code <291579285+marioschoenert-code@users.noreply.github.com>